summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorparsons <parsons@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>2010-01-05 19:35:32 +0000
committerparsons <parsons@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>2010-01-05 19:35:32 +0000
commit8b625fbac1d2ffceffe77f3ccd37067e8d3663f4 (patch)
tree57467fb6d4fa47cea25612b15a6bd1082bfcbd90
parentf94e9fe4ac7c6a4e125aff40dd00b213cb21d81f (diff)
downloadATCD-8b625fbac1d2ffceffe77f3ccd37067e8d3663f4.tar.gz
ChangeLogTag: Tue Jan 5 19:33:27 UTC 2010 Jeff Parsons <j.parsons@vanderbilt.edu>
-rw-r--r--modules/TAO/ChangeLog8
-rw-r--r--modules/TAO/TAO_IDL/ast/ast_template_module.cpp4
-rw-r--r--modules/TAO/TAO_IDL/ast/ast_template_module_inst.cpp5
-rw-r--r--modules/TAO/TAO_IDL/ast/ast_template_module_ref.cpp5
4 files changed, 16 insertions, 6 deletions
diff --git a/modules/TAO/ChangeLog b/modules/TAO/ChangeLog
index 9957dc95076..ae533a826d9 100644
--- a/modules/TAO/ChangeLog
+++ b/modules/TAO/ChangeLog
@@ -1,3 +1,11 @@
+Tue Jan 5 19:33:27 UTC 2010 Jeff Parsons <j.parsons@vanderbilt.edu>
+
+ * TAO_IDL/ast/ast_template_module.cpp:
+ * TAO_IDL/ast/ast_template_module_ref.cpp:
+ * TAO_IDL/ast_template_module_inst.cpp:
+
+ Uncommented code in ast_accept() methods.
+
Mon Jan 4 14:25:39 UTC 2009 Johnny Willemsen <jwillemsen@remedy.nl>
* TAO_IDL/be/be_visitor_argument/argument.cpp
diff --git a/modules/TAO/TAO_IDL/ast/ast_template_module.cpp b/modules/TAO/TAO_IDL/ast/ast_template_module.cpp
index fd93240e7ee..31468c1bc98 100644
--- a/modules/TAO/TAO_IDL/ast/ast_template_module.cpp
+++ b/modules/TAO/TAO_IDL/ast/ast_template_module.cpp
@@ -141,9 +141,9 @@ AST_Template_Module::destroy (void)
}
int
-AST_Template_Module::ast_accept (ast_visitor *)
+AST_Template_Module::ast_accept (ast_visitor *visitor)
{
- return 0;//visitor->visit_template_module (this);
+ return visitor->visit_template_module (this);
}
AST_Template_Module_Ref *
diff --git a/modules/TAO/TAO_IDL/ast/ast_template_module_inst.cpp b/modules/TAO/TAO_IDL/ast/ast_template_module_inst.cpp
index aaaddee7fbc..5cea162c3a0 100644
--- a/modules/TAO/TAO_IDL/ast/ast_template_module_inst.cpp
+++ b/modules/TAO/TAO_IDL/ast/ast_template_module_inst.cpp
@@ -2,6 +2,7 @@
#include "ast_template_module_inst.h"
#include "ast_template_module.h"
+#include "ast_visitor.h"
AST_Template_Module_Inst::AST_Template_Module_Inst (
UTL_ScopedName *n,
@@ -52,9 +53,9 @@ AST_Template_Module_Inst::destroy (void)
}
int
-AST_Template_Module_Inst::ast_accept (ast_visitor *)
+AST_Template_Module_Inst::ast_accept (ast_visitor *visitor)
{
- return 0;//visitor->visit_template_module_inst (this);
+ return visitor->visit_template_module_inst (this);
}
IMPL_NARROW_FROM_DECL (AST_Template_Module_Inst)
diff --git a/modules/TAO/TAO_IDL/ast/ast_template_module_ref.cpp b/modules/TAO/TAO_IDL/ast/ast_template_module_ref.cpp
index 9b3b9b3fde9..358107c45a2 100644
--- a/modules/TAO/TAO_IDL/ast/ast_template_module_ref.cpp
+++ b/modules/TAO/TAO_IDL/ast/ast_template_module_ref.cpp
@@ -2,6 +2,7 @@
#include "ast_template_module_ref.h"
#include "ast_template_module.h"
+#include "ast_visitor.h"
#include "utl_strlist.h"
@@ -54,9 +55,9 @@ AST_Template_Module_Ref::destroy (void)
}
int
-AST_Template_Module_Ref::ast_accept (ast_visitor *)
+AST_Template_Module_Ref::ast_accept (ast_visitor *visitor)
{
- return 0;//visitor->visit_template_module_ref (this);
+ return visitor->visit_template_module_ref (this);
}
IMPL_NARROW_FROM_DECL (AST_Template_Module_Ref)