summaryrefslogtreecommitdiff
path: root/odb/context.hxx
diff options
context:
space:
mode:
Diffstat (limited to 'odb/context.hxx')
-rw-r--r--odb/context.hxx9
1 files changed, 4 insertions, 5 deletions
diff --git a/odb/context.hxx b/odb/context.hxx
index 9878bcb..84e9f70 100644
--- a/odb/context.hxx
+++ b/odb/context.hxx
@@ -400,16 +400,15 @@ protected:
//
static column_type_flags const ctf_default_null = 0x01;
- // Return empty string if there is no mapping. The second argument
- // is the custom type or empty string if it is not specified.
+ // Return empty string if there is no mapping.
//
string
database_type (semantics::type& t,
- string const& type,
+ semantics::names* hint,
semantics::context& c,
column_type_flags f)
{
- return current ().database_type_impl (t, type, c, f);
+ return current ().database_type_impl (t, hint, c, f);
}
// The default implementation uses the type map (populated by the database-
@@ -417,7 +416,7 @@ protected:
//
virtual string
database_type_impl (semantics::type&,
- string const& type,
+ semantics::names*,
semantics::context&,
column_type_flags);