From 584f3602038919957f62848a03deb5b5bd9cc9ba Mon Sep 17 00:00:00 2001 From: Boris Kolpackov Date: Wed, 20 Apr 2011 10:14:10 +0200 Subject: Cosmetic changes --- odb/relational/type-processor.cxx | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) (limited to 'odb/relational') 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"); - vt = t.get ("tree-value-type"); + vt = t.get ("value-tree-type"); if (ck == ck_ordered) - it = t.get ("tree-index-type"); + it = t.get ("index-tree-type"); if (ck == ck_map || ck == ck_multimap) - kt = t.get ("tree-key-type"); + kt = t.get ("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); -- cgit v1.1