diff options
author | Boris Kolpackov <boris@codesynthesis.com> | 2011-04-18 18:31:40 +0200 |
---|---|---|
committer | Boris Kolpackov <boris@codesynthesis.com> | 2011-04-18 18:31:40 +0200 |
commit | 2f0038a2aed44ce04200c09229921ae21861ccaa (patch) | |
tree | b266fe7d0f9c9bd23503779006f67cc9d3529a2c /sqlite | |
parent | 585260e6131d103fe75111402b1018a2a23e0a8e (diff) |
Get rid of image type argument in value_traits
Diffstat (limited to 'sqlite')
-rw-r--r-- | sqlite/types/traits.hxx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sqlite/types/traits.hxx b/sqlite/types/traits.hxx index 13eef34..70b7b26 100644 --- a/sqlite/types/traits.hxx +++ b/sqlite/types/traits.hxx @@ -17,7 +17,7 @@ namespace odb namespace sqlite { template <> - class value_traits<buffer, details::buffer, id_blob> + class value_traits<buffer, id_blob> { public: typedef buffer value_type; @@ -54,7 +54,7 @@ namespace odb }; template <> - class value_traits<string_ptr, details::buffer, id_text> + class value_traits<string_ptr, id_text> { public: typedef string_ptr value_type; |