summaryrefslogtreecommitdiff
path: root/TAO/TAO_IDL/be/be_visitor_root
diff options
context:
space:
mode:
authorparsons <parsons@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>2005-04-12 22:58:36 +0000
committerparsons <parsons@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>2005-04-12 22:58:36 +0000
commitc0a45be4e0b8957e6c054cf668c4c7af47b4da57 (patch)
tree56dfbd4e24949ea11df368aa9e04b41cf987b5f7 /TAO/TAO_IDL/be/be_visitor_root
parenta9bd1cd38f154d5252a55a8fc37f74a26d07b035 (diff)
downloadATCD-c0a45be4e0b8957e6c054cf668c4c7af47b4da57.tar.gz
ChangeLogTag: Tue Apr 12 17:51:58 2005 Jeff Parsons <j.parsons@vanderbilt.edu>
Diffstat (limited to 'TAO/TAO_IDL/be/be_visitor_root')
-rw-r--r--TAO/TAO_IDL/be/be_visitor_root/root.cpp6
1 files changed, 6 insertions, 0 deletions
diff --git a/TAO/TAO_IDL/be/be_visitor_root/root.cpp b/TAO/TAO_IDL/be/be_visitor_root/root.cpp
index 5e203e25b77..2e290086017 100644
--- a/TAO/TAO_IDL/be/be_visitor_root/root.cpp
+++ b/TAO/TAO_IDL/be/be_visitor_root/root.cpp
@@ -1140,6 +1140,12 @@ be_visitor_root::visit_home (be_home *node)
status = node->accept (&visitor);
break;
}
+ case TAO_CodeGen::TAO_ROOT_CS:
+ {
+ be_visitor_home_cs visitor (&ctx);
+ status = node->accept (&visitor);
+ break;
+ }
default:
return 0; // nothing to be done
}