diff options
author | Boris Kolpackov <boris@codesynthesis.com> | 2012-09-06 08:26:38 +0200 |
---|---|---|
committer | Boris Kolpackov <boris@codesynthesis.com> | 2012-09-06 08:26:38 +0200 |
commit | 930195e69a36f5f8025f6db33b1d8f979a2a8ba1 (patch) | |
tree | 6f461129b0d0a51348ec624fc8941c9401535db4 | |
parent | a79bd67be617041cd65e8bdf988e8d8da523fd43 (diff) |
Use default_value_traits instead of value_traits
-rw-r--r-- | odb/boost/date-time/mssql/gregorian-traits.hxx | 2 | ||||
-rw-r--r-- | odb/boost/date-time/mssql/posix-time-traits.hxx | 4 |
2 files changed, 3 insertions, 3 deletions
diff --git a/odb/boost/date-time/mssql/gregorian-traits.hxx b/odb/boost/date-time/mssql/gregorian-traits.hxx index 9bec87c..32aba6a 100644 --- a/odb/boost/date-time/mssql/gregorian-traits.hxx +++ b/odb/boost/date-time/mssql/gregorian-traits.hxx @@ -18,7 +18,7 @@ namespace odb namespace mssql { template <> - class value_traits< ::boost::gregorian::date, id_date> + class default_value_traits< ::boost::gregorian::date, id_date> { public: typedef ::boost::gregorian::date value_type; diff --git a/odb/boost/date-time/mssql/posix-time-traits.hxx b/odb/boost/date-time/mssql/posix-time-traits.hxx index 666e9b9..e88386f 100644 --- a/odb/boost/date-time/mssql/posix-time-traits.hxx +++ b/odb/boost/date-time/mssql/posix-time-traits.hxx @@ -18,7 +18,7 @@ namespace odb namespace mssql { template <> - class value_traits< ::boost::posix_time::ptime, id_datetime> + class default_value_traits< ::boost::posix_time::ptime, id_datetime> { public: typedef ::boost::posix_time::ptime ptime; @@ -107,7 +107,7 @@ namespace odb }; template <> - class value_traits< ::boost::posix_time::time_duration, id_time> + class default_value_traits< ::boost::posix_time::time_duration, id_time> { public: typedef ::boost::posix_time::time_duration time_duration; |