diff options
author | Ossama Othman <ossama-othman@users.noreply.github.com> | 2005-04-08 05:39:26 +0000 |
---|---|---|
committer | Ossama Othman <ossama-othman@users.noreply.github.com> | 2005-04-08 05:39:26 +0000 |
commit | 607471e0a40ea575c351f402e18c73127af64583 (patch) | |
tree | d2492b8125af94e3381444046cb440804f117d8d /TAO | |
parent | 71d7a49a8203cb694de9235c03f1cb4c080028fa (diff) | |
download | ATCD-607471e0a40ea575c351f402e18c73127af64583.tar.gz |
ChangeLogTag:Thu Apr 7 22:36:20 2005 Ossama Othman <ossama@dre.vanderbilt.edu>
Diffstat (limited to 'TAO')
-rw-r--r-- | TAO/ChangeLog | 9 | ||||
-rw-r--r-- | TAO/TAO_IDL/be/be_visitor_component/component_cs.cpp | 4 |
2 files changed, 11 insertions, 2 deletions
diff --git a/TAO/ChangeLog b/TAO/ChangeLog index 84ea43f32e7..d3de3658e29 100644 --- a/TAO/ChangeLog +++ b/TAO/ChangeLog @@ -1,3 +1,12 @@ +Thu Apr 7 22:36:20 2005 Ossama Othman <ossama@dre.vanderbilt.edu> + + * TAO_IDL/be/be_visitor_component/component_cs.cpp + (visit_component): + + Use the new objref_typecode visitor to generate component + TypeCodes. Addresses "unresolved symbol" component TypeCode + link-time errors. + Thu Apr 7 21:27:55 2005 Ossama Othman <ossama@dre.vanderbilt.edu> * orbsvcs/orbsvcs/FtRtEvent/EventChannel/Request_Context_Repository.cpp diff --git a/TAO/TAO_IDL/be/be_visitor_component/component_cs.cpp b/TAO/TAO_IDL/be/be_visitor_component/component_cs.cpp index 9326c4ca932..07ae1ff1718 100644 --- a/TAO/TAO_IDL/be/be_visitor_component/component_cs.cpp +++ b/TAO/TAO_IDL/be/be_visitor_component/component_cs.cpp @@ -322,8 +322,8 @@ be_visitor_component_cs::visit_component (be_component *node) if (be_global->tc_support ()) { - ctx.sub_state (TAO_CodeGen::TAO_TC_DEFN_TYPECODE); - be_visitor_typecode_defn tc_visitor (&ctx); + // ctx.sub_state (TAO_CodeGen::TAO_TC_DEFN_TYPECODE); + TAO::be_visitor_objref_typecode tc_visitor (&ctx); if (node->accept (&tc_visitor) == -1) { |