From a7ec19749a76cc262240124f5c71c1ee4051cba7 Mon Sep 17 00:00:00 2001 From: Boris Kolpackov Date: Wed, 31 Aug 2011 14:19:56 +0200 Subject: Rename comp_value() predicate to composite() --- odb/common.cxx | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'odb/common.cxx') diff --git a/odb/common.cxx b/odb/common.cxx index 22e1932..81f8155 100644 --- a/odb/common.cxx +++ b/odb/common.cxx @@ -56,7 +56,7 @@ traverse (semantics::class_& c) // Ignore transient bases. // - if (!(obj || context::comp_value (c))) + if (!(obj || context::composite (c))) return; semantics::class_* prev; @@ -116,7 +116,7 @@ traverse (semantics::data_member& m) semantics::type& t (m.type ()); - if (semantics::class_* comp = context::comp_value_wrapper (t)) + if (semantics::class_* comp = context::composite_wrapper (t)) { string old_prefix, old_table_prefix; @@ -240,7 +240,7 @@ traverse (semantics::class_& c) // Ignore transient bases. // - if (!(obj || context::comp_value (c))) + if (!(obj || context::composite (c))) return; bool f (top_level_); @@ -283,7 +283,7 @@ traverse (semantics::data_member& m) semantics::type& t (m.type ()); - if (semantics::class_* comp = comp_value_wrapper (t)) + if (semantics::class_* comp = composite_wrapper (t)) { string old_prefix (prefix_); -- cgit v1.1