diff options
-rw-r--r-- | odb/oracle/traits.hxx | 14 |
1 files changed, 8 insertions, 6 deletions
diff --git a/odb/oracle/traits.hxx b/odb/oracle/traits.hxx index 13bb1dc..662e5b7 100644 --- a/odb/oracle/traits.hxx +++ b/odb/oracle/traits.hxx @@ -1440,6 +1440,14 @@ namespace odb static const database_type_id db_type_id = id_string; }; +#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_string; + }; +#endif + template <> struct default_type_traits<char> { @@ -1469,12 +1477,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_raw; - }; - - template <std::size_t N> struct default_type_traits<std::array<unsigned char, N> > { static const database_type_id db_type_id = id_raw; |