aboutsummaryrefslogtreecommitdiff
path: root/odb/common.cxx
diff options
context:
space:
mode:
authorBoris Kolpackov <boris@codesynthesis.com>2011-08-31 14:19:56 +0200
committerBoris Kolpackov <boris@codesynthesis.com>2011-08-31 14:19:56 +0200
commita7ec19749a76cc262240124f5c71c1ee4051cba7 (patch)
treeb88fcfe27f1128d439e1e7c1ef470130737cacd4 /odb/common.cxx
parent47d57dc9af5db83e5b508282b844064caf9b7968 (diff)
Rename comp_value() predicate to composite()
Diffstat (limited to 'odb/common.cxx')
-rw-r--r--odb/common.cxx8
1 files changed, 4 insertions, 4 deletions
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_);