aboutsummaryrefslogtreecommitdiff
path: root/odb/common.hxx
diff options
context:
space:
mode:
authorBoris Kolpackov <boris@codesynthesis.com>2015-06-22 18:08:32 +0200
committerBoris Kolpackov <boris@codesynthesis.com>2015-06-22 18:08:32 +0200
commitdfc260adf46e79b039685d554797b403d76c6bfd (patch)
tree7051fc42ae1f4d78ca0940dfedab0e4deb1bebd7 /odb/common.hxx
parent2ca7acef7c858fb7f21b5101dedfc021aea62ff8 (diff)
Implement member type mapping, more m.type() cleanups
Diffstat (limited to 'odb/common.hxx')
-rw-r--r--odb/common.hxx8
1 files changed, 4 insertions, 4 deletions
diff --git a/odb/common.hxx b/odb/common.hxx
index ba9dd2d..104351a 100644
--- a/odb/common.hxx
+++ b/odb/common.hxx
@@ -33,7 +33,7 @@ struct object_members_base: traversal::class_, virtual context
// bases and members. The first argument is the data member and can
// be NULL if we are traversing the root type or a base. The second
// argument is the actual composite type, which is not necessarily
- // the same as m.type ().
+ // the same as the member's type.
//
virtual void
traverse_composite (semantics::data_member*, semantics::class_&);
@@ -49,8 +49,8 @@ struct object_members_base: traversal::class_, virtual context
semantics::class_& comp,
semantics::type* wrapper);
- // The second argument is the actual container type in case m.type ()
- // is a wrapper.
+ // The second argument is the actual container type in case the
+ // member type is a wrapper.
//
virtual void
traverse_container (semantics::data_member&, semantics::type&);
@@ -196,7 +196,7 @@ struct object_columns_base: traversal::class_, virtual context
// bases and members. The first argument is the data member and can
// be NULL if we are traversing the root type or a base. The second
// argument is the actual composite type, which is not necessarily
- // the same as m.type ().
+ // the same as the member type.
//
virtual void
traverse_composite (semantics::data_member*, semantics::class_&);