summaryrefslogtreecommitdiff
path: root/TAO/TAO_IDL/be/be_module.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'TAO/TAO_IDL/be/be_module.cpp')
-rw-r--r--TAO/TAO_IDL/be/be_module.cpp13
1 files changed, 11 insertions, 2 deletions
diff --git a/TAO/TAO_IDL/be/be_module.cpp b/TAO/TAO_IDL/be/be_module.cpp
index a7980972eaf..e3a23c01475 100644
--- a/TAO/TAO_IDL/be/be_module.cpp
+++ b/TAO/TAO_IDL/be/be_module.cpp
@@ -27,14 +27,23 @@ ACE_RCSID (be,
"$Id$")
be_module::be_module (void)
+ : COMMON_Base (),
+ AST_Decl (),
+ UTL_Scope (),
+ be_scope (),
+ be_decl ()
{
}
be_module::be_module (UTL_ScopedName *n)
- : AST_Module (n),
+ : COMMON_Base (),
AST_Decl (AST_Decl::NT_module,
n),
- UTL_Scope (AST_Decl::NT_module)
+ UTL_Scope (AST_Decl::NT_module),
+ AST_Module (n),
+ be_scope (AST_Decl::NT_module),
+ be_decl (AST_Decl::NT_module,
+ n)
{
}