summaryrefslogtreecommitdiff
path: root/odb/semantics/namespace.hxx
diff options
context:
space:
mode:
authorBoris Kolpackov <boris@codesynthesis.com>2010-11-15 12:34:44 +0200
committerBoris Kolpackov <boris@codesynthesis.com>2010-11-15 12:34:44 +0200
commitde2acaa079cbf6bcb1db8fecd956789360d9dd5c (patch)
tree5f8f2dfaf0cb39d6074b4d77a5654f3b4a476825 /odb/semantics/namespace.hxx
parentb926362a9c1276ee15b5f961e912d8d37369e40b (diff)
Maintain GCC tree node for all semantic graph nodes
Diffstat (limited to 'odb/semantics/namespace.hxx')
-rw-r--r--odb/semantics/namespace.hxx6
1 files changed, 4 insertions, 2 deletions
diff --git a/odb/semantics/namespace.hxx b/odb/semantics/namespace.hxx
index 105ed0b..ea09228 100644
--- a/odb/semantics/namespace.hxx
+++ b/odb/semantics/namespace.hxx
@@ -13,12 +13,14 @@ namespace semantics
class namespace_: public scope
{
public:
- namespace_ (path const&, size_t line, size_t column);
- namespace_ ();
+ namespace_ (path const&, size_t line, size_t column, tree);
// Resolve conflict between scope::scope and nameable::scope.
//
using nameable::scope;
+
+ protected:
+ namespace_ ();
};
}