From cef149471d2fa41c5fa51ab666e24dbf0c3a7243 Mon Sep 17 00:00:00 2001 From: Boris Kolpackov Date: Tue, 12 Feb 2013 13:48:12 +0200 Subject: Qualify vector to work around Sun CC bugs --- odb/pgsql/traits.cxx | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/odb/pgsql/traits.cxx b/odb/pgsql/traits.cxx index bb75e54..79188d1 100644 --- a/odb/pgsql/traits.cxx +++ b/odb/pgsql/traits.cxx @@ -98,7 +98,9 @@ namespace odb // // default_value_traits, id_bytea> // - void default_value_traits, id_bytea>:: + // std::vector has to be qualified for Sun CC. + // + void default_value_traits, id_bytea>:: set_image (details::buffer& b, size_t& n, bool& is_null, @@ -119,7 +121,9 @@ namespace odb // // default_value_traits, id_bytea> // - void default_value_traits, id_bytea>:: + // std::vector has to be qualified for Sun CC. + // + void default_value_traits, id_bytea>:: set_image (details::buffer& b, size_t& n, bool& is_null, -- cgit v1.1