From e681587b3cd9a96de3d58af48b15a799990f6e8d Mon Sep 17 00:00:00 2001 From: Boris Kolpackov Date: Thu, 10 Mar 2011 10:14:14 +0200 Subject: Cosmetic changes --- odb/relational/common.cxx | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'odb/relational/common.cxx') diff --git a/odb/relational/common.cxx b/odb/relational/common.cxx index 0bcc676..46e1570 100644 --- a/odb/relational/common.cxx +++ b/odb/relational/common.cxx @@ -104,13 +104,13 @@ namespace relational else { string im_type (image_type (m)); - string db_type (database_type (m)); + string db_type_id (database_type_id (m)); string type ( "mysql::value_traits< " + m.type ().fq_name (m.belongs ().hint ()) + ", " + im_type + ", " - + db_type + + db_type_id + " >::query_type"); if (decl_) @@ -119,7 +119,7 @@ namespace relational << "//" << endl << "static const mysql::query_column<" << endl << " " << type << "," << endl - << " " << db_type << ">" << endl + << " " << db_type_id << ">" << endl << name << ";" << endl; } @@ -129,7 +129,7 @@ namespace relational os << "const mysql::query_column<" << endl << " " << type << "," << endl - << " " << db_type << ">" << endl + << " " << db_type_id << ">" << endl << scope_ << "::" << name << " (" << endl << column << ");" << endl; -- cgit v1.1