From 2f0038a2aed44ce04200c09229921ae21861ccaa Mon Sep 17 00:00:00 2001
From: Boris Kolpackov <boris@codesynthesis.com>
Date: Mon, 18 Apr 2011 18:31:40 +0200
Subject: Get rid of image type argument in value_traits

---
 mysql/types/traits.hxx | 10 +++++-----
 1 file changed, 5 insertions(+), 5 deletions(-)

(limited to 'mysql/types')

diff --git a/mysql/types/traits.hxx b/mysql/types/traits.hxx
index b05b2c4..2698afc 100644
--- a/mysql/types/traits.hxx
+++ b/mysql/types/traits.hxx
@@ -17,7 +17,7 @@ namespace odb
   namespace mysql
   {
     template <database_type_id ID>
-    class value_traits<date_time, MYSQL_TIME, ID>
+    class value_traits<date_time, ID>
     {
     public:
       typedef date_time value_type;
@@ -57,7 +57,7 @@ namespace odb
     };
 
     template <>
-    class value_traits<buffer, details::buffer, id_blob>
+    class value_traits<buffer, id_blob>
     {
     public:
       typedef buffer value_type;
@@ -94,7 +94,7 @@ namespace odb
     };
 
     template <>
-    class value_traits<bitfield, unsigned char*, id_bit>
+    class value_traits<bitfield, id_bit>
     {
     public:
       typedef bitfield value_type;
@@ -132,7 +132,7 @@ namespace odb
     };
 
     template <>
-    class value_traits<set, details::buffer, id_set>
+    class value_traits<set, id_set>
     {
     public:
       typedef set value_type;
@@ -194,7 +194,7 @@ namespace odb
     };
 
     template <>
-    class value_traits<string_ptr, details::buffer, id_string>
+    class value_traits<string_ptr, id_string>
     {
     public:
       typedef string_ptr value_type;
-- 
cgit v1.1