diff options
author | Boris Kolpackov <boris@codesynthesis.com> | 2010-08-03 14:05:02 +0200 |
---|---|---|
committer | Boris Kolpackov <boris@codesynthesis.com> | 2010-08-03 14:05:02 +0200 |
commit | 6891521c01a648f2ef66a5b303c9c73a1c3b8ade (patch) | |
tree | b51bfc909eee5a33c872ad13de79648368d8f734 | |
parent | 08de79b43a09b02a7b8feae2a9c12005d4bbb878 (diff) |
Use class instead of struct
-rw-r--r-- | odb/traits.hxx | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/odb/traits.hxx b/odb/traits.hxx index aa98ae1..14fa424 100644 --- a/odb/traits.hxx +++ b/odb/traits.hxx @@ -91,8 +91,9 @@ namespace odb }; template <typename V> - struct value_traits + class value_traits { + public: typedef V value_type; template <typename I> |