From 6bd95f51beb26d87fd5d5db22391c73f333eee6e Mon Sep 17 00:00:00 2001 From: Boris Kolpackov Date: Wed, 19 Oct 2011 10:47:41 +0200 Subject: Add support for const data members Const data members are automatically treated as readonly. New test: const-member. --- odb/relational/source.cxx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'odb/relational/source.cxx') diff --git a/odb/relational/source.cxx b/odb/relational/source.cxx index fe23ac9..be16309 100644 --- a/odb/relational/source.cxx +++ b/odb/relational/source.cxx @@ -217,7 +217,7 @@ namespace relational // is_null()/is_not_null() will be valid for composite values // as well. // - if (!context::composite_wrapper (m->type ())) + if (!context::composite_wrapper (context::utype (*m))) break; ptt = tt; @@ -259,7 +259,7 @@ namespace relational { using semantics::type; - type* t (&m->type ()); + type* t (&context::utype (*m)); if (type* c = context::container_wrapper (*t)) t = &context::container_vt (*c); -- cgit v1.1