summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorcoryan <coryan@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>2002-01-28 21:41:28 +0000
committercoryan <coryan@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>2002-01-28 21:41:28 +0000
commitbce6f6be8fc6d175111d66b01cee80982d78b2bf (patch)
tree13f9929f8dfd86c821cad3f8aeb792e57744aa92
parent7f23bbd975eaab4ccd387162eebdc17b1d2e0a5b (diff)
downloadATCD-bce6f6be8fc6d175111d66b01cee80982d78b2bf.tar.gz
ChangeLogTag:Mon Jan 28 13:40:38 2002 Carlos O'Ryan <coryan@uci.edu>
-rw-r--r--TAO/ChangeLogs/ChangeLog-02a7
-rw-r--r--TAO/TAO_IDL/be/be_visitor_ami_pre_proc.cpp2
2 files changed, 8 insertions, 1 deletions
diff --git a/TAO/ChangeLogs/ChangeLog-02a b/TAO/ChangeLogs/ChangeLog-02a
index 2f817d6377e..4c74369e046 100644
--- a/TAO/ChangeLogs/ChangeLog-02a
+++ b/TAO/ChangeLogs/ChangeLog-02a
@@ -1,3 +1,10 @@
+Mon Jan 28 13:40:38 2002 Carlos O'Ryan <coryan@uci.edu>
+
+ * TAO_IDL/be/be_visitor_ami_pre_proc.cpp:
+ Fixed typo in UTL_ScopeActiveIterator change, the loop
+ termination should have been !si.is_done(), but I typed
+ si.is_done().
+
Mon Jan 28 12:40:15 2002 Ossama Othman <ossama@uci.edu>
* performance-tests/Latency/AMH/Single_Threaded/client.dsp:
diff --git a/TAO/TAO_IDL/be/be_visitor_ami_pre_proc.cpp b/TAO/TAO_IDL/be/be_visitor_ami_pre_proc.cpp
index 382af0dbd65..fb8328f4f99 100644
--- a/TAO/TAO_IDL/be/be_visitor_ami_pre_proc.cpp
+++ b/TAO/TAO_IDL/be/be_visitor_ami_pre_proc.cpp
@@ -611,7 +611,7 @@ be_visitor_ami_pre_proc::create_sendc_operation (be_operation *node,
{
// initialize an iterator to iterate thru our scope
for (UTL_ScopeActiveIterator si (node, UTL_Scope::IK_decls);
- si.is_done ();
+ !si.is_done ();
si.next ())
{
AST_Decl *d = si.item ();