aboutsummaryrefslogtreecommitdiff
path: root/odb
diff options
context:
space:
mode:
authorConstantin Michael <constantin@codesynthesis.com>2011-06-07 18:07:50 +0200
committerConstantin Michael <constantin@codesynthesis.com>2011-06-07 18:07:50 +0200
commit63aec0d22bdf4335fe5e42fa8bb7004b306caa50 (patch)
treed5d08d402a8ee45c3ea89929d52a5e2101cef2c5 /odb
parent6b00d1a2e4c7675eca17e96bcbfcbf1c259bd850 (diff)
Remove enum from set of supported types
Diffstat (limited to 'odb')
-rw-r--r--odb/pgsql/traits.hxx20
1 files changed, 2 insertions, 18 deletions
diff --git a/odb/pgsql/traits.hxx b/odb/pgsql/traits.hxx
index 45c92e3..a1e3cf6 100644
--- a/odb/pgsql/traits.hxx
+++ b/odb/pgsql/traits.hxx
@@ -44,7 +44,6 @@ namespace odb
id_bytea,
id_bit,
id_varbit,
- id_enum,
id_uuid
};
@@ -89,10 +88,7 @@ namespace odb
template <>
struct image_traits<id_varbit> {typedef details::ubuffer image_type;};
- template <>
- struct image_traits<id_enum> {typedef details::buffer image_type;};
-
- // @@ UUID image is a 16-byte sequence.
+ // UUID image is a 16-byte sequence.
//
template <>
struct image_traits<id_uuid> {typedef unsigned char* image_type;};
@@ -186,12 +182,6 @@ namespace odb
{
};
- template <>
- struct LIBODB_PGSQL_EXPORT default_value_traits<std::string, id_enum>:
- string_value_traits
- {
- };
-
// const char* specialization
//
// Specialization for const char* which only supports initialization
@@ -224,12 +214,6 @@ namespace odb
{
};
- template <>
- struct LIBODB_PGSQL_EXPORT default_value_traits<const char*, id_enum>:
- c_string_value_traits
- {
- };
-
//
// type_traits
//
@@ -238,7 +222,7 @@ namespace odb
struct default_type_traits;
template <typename T>
- class type_traits: public default_type_traits<T>
+ class type_traits: public default_type_traits<T>
{
};