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 | c5bbd6a853c09dbb02db204e2db9d46647f85850 (patch) | |
tree | 74816b7ec6571e8306a03268fddaa7721e6daa63 | |
parent | 297b357ea62c84d2e0925532003dfb1a54c5ff88 (diff) |
Qualify vector to work around Sun CC bugs
-rw-r--r-- | odb/mysql/traits.cxx | 10 |
1 files changed, 6 insertions, 4 deletions
diff --git a/odb/mysql/traits.cxx b/odb/mysql/traits.cxx index fca9684..93b591d 100644 --- a/odb/mysql/traits.cxx +++ b/odb/mysql/traits.cxx @@ -100,8 +100,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, @@ -122,8 +123,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, |