diff options
author | Boris Kolpackov <boris@codesynthesis.com> | 2013-02-12 13:48:12 +0200 |
---|---|---|
committer | Boris Kolpackov <boris@codesynthesis.com> | 2013-02-12 13:48:12 +0200 |
commit | b84408a833511bb03b8dbe031ec06d6d09ca5bc5 (patch) | |
tree | 296f7a8f288c4733c0a4b2005498602fa4f73299 | |
parent | 7069c262c0293e634f9172e8ee57b0f018f64861 (diff) |
Qualify vector to work around Sun CC bugs
-rw-r--r-- | odb/sqlite/traits.cxx | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/odb/sqlite/traits.cxx b/odb/sqlite/traits.cxx index 5f3411c..d3542d2 100644 --- a/odb/sqlite/traits.cxx +++ b/odb/sqlite/traits.cxx @@ -174,7 +174,9 @@ namespace odb // // default_value_traits<vector<char>, id_blob> // - void default_value_traits<vector<char>, id_blob>:: + // std::vector has to be qualified for Sun CC. + // + void default_value_traits<std::vector<char>, id_blob>:: set_image (details::buffer& b, size_t& n, bool& is_null, @@ -195,7 +197,9 @@ namespace odb // // default_value_traits<vector<unsigned char>, id_blob> // - void default_value_traits<vector<unsigned char>, id_blob>:: + // std::vector has to be qualified for Sun CC. + // + void default_value_traits<std::vector<unsigned char>, id_blob>:: set_image (details::buffer& b, size_t& n, bool& is_null, |