From 51419aca9c4bcc056ee87d5aa26fe3076f4593ef Mon Sep 17 00:00:00 2001 From: Boris Kolpackov Date: Thu, 10 Mar 2011 10:04:20 +0200 Subject: Move to new "virtual functions in context" model --- odb/type-processor.cxx | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) (limited to 'odb/type-processor.cxx') diff --git a/odb/type-processor.cxx b/odb/type-processor.cxx index af6ab3d..ebead7b 100644 --- a/odb/type-processor.cxx +++ b/odb/type-processor.cxx @@ -130,15 +130,15 @@ namespace if (null_pointer (m)) f |= ctf_default_null; - type = data_->column_type_impl (idt, type, id, f); + type = database_type (idt, type, id, f); } else { string orig (type); - type = data_->column_type_impl (t, orig, m, ctf_none); + type = database_type (t, orig, m, ctf_none); if (m.count ("id")) - ref_type = data_->column_type_impl (t, orig, m, ctf_object_id_ref); + ref_type = database_type (t, orig, m, ctf_object_id_ref); } if (!type.empty ()) @@ -217,10 +217,10 @@ namespace if (null_pointer (m, prefix)) f |= ctf_default_null; - type = data_->column_type_impl (idt, type, id, f); + type = database_type (idt, type, id, f); } else - type = data_->column_type_impl (t, type, m, ctf_none); + type = database_type (t, type, m, ctf_none); if (!type.empty ()) { -- cgit v1.1