diff options
-rw-r--r-- | odb/sqlite/traits.hxx | 14 |
1 files changed, 8 insertions, 6 deletions
diff --git a/odb/sqlite/traits.hxx b/odb/sqlite/traits.hxx index 0cdf171..53d2db0 100644 --- a/odb/sqlite/traits.hxx +++ b/odb/sqlite/traits.hxx @@ -929,6 +929,14 @@ namespace odb static const database_type_id db_type_id = id_text; }; +#ifdef ODB_CXX11 + template <std::size_t N> + struct default_type_traits<std::array<char, N> > + { + static const database_type_id db_type_id = id_text; + }; +#endif + template <> struct default_type_traits<char> { @@ -957,12 +965,6 @@ namespace odb #ifdef ODB_CXX11 template <std::size_t N> - struct default_type_traits<std::array<char, N> > - { - static const database_type_id db_type_id = id_blob; - }; - - template <std::size_t N> struct default_type_traits<std::array<unsigned char, N> > { static const database_type_id db_type_id = id_blob; |