summaryrefslogtreecommitdiff
path: root/odb/relational
diff options
context:
space:
mode:
authorBoris Kolpackov <boris@codesynthesis.com>2011-04-20 10:14:10 +0200
committerBoris Kolpackov <boris@codesynthesis.com>2011-04-20 10:14:10 +0200
commit584f3602038919957f62848a03deb5b5bd9cc9ba (patch)
tree7701fe208205bccd079d5d896aad460fd2ad1211 /odb/relational
parentf01bc7a5db83aebb91853ba0669a9eaf9598a8e3 (diff)
Cosmetic changes
Diffstat (limited to 'odb/relational')
-rw-r--r--odb/relational/type-processor.cxx14
1 files changed, 7 insertions, 7 deletions
diff --git a/odb/relational/type-processor.cxx b/odb/relational/type-processor.cxx
index 05c50a5..379c4aa 100644
--- a/odb/relational/type-processor.cxx
+++ b/odb/relational/type-processor.cxx
@@ -270,13 +270,13 @@ namespace relational
if (t.count ("container"))
{
ck = t.get<container_kind_type> ("container-kind");
- vt = t.get<semantics::type*> ("tree-value-type");
+ vt = t.get<semantics::type*> ("value-tree-type");
if (ck == ck_ordered)
- it = t.get<semantics::type*> ("tree-index-type");
+ it = t.get<semantics::type*> ("index-tree-type");
if (ck == ck_map || ck == ck_multimap)
- kt = t.get<semantics::type*> ("tree-key-type");
+ kt = t.get<semantics::type*> ("key-tree-type");
}
else
{
@@ -367,7 +367,7 @@ namespace relational
throw;
}
- t.set ("tree-value-type", vt);
+ t.set ("value-tree-type", vt);
// Get the index type for ordered containers.
@@ -396,7 +396,7 @@ namespace relational
throw;
}
- t.set ("tree-index-type", it);
+ t.set ("index-tree-type", it);
}
// Get the key type for maps.
@@ -425,13 +425,13 @@ namespace relational
throw;
}
- t.set ("tree-key-type", kt);
+ t.set ("key-tree-type", kt);
}
}
// Process member data.
//
- m.set ("tree-id-type", &id_tree_type);
+ m.set ("id-tree-type", &id_tree_type);
m.set ("id-column-type", &id_column_type);
process_container_value (*vt, m, "value", true);