summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorelliott_c <ocielliottc@users.noreply.github.com>2004-10-29 18:32:16 +0000
committerelliott_c <ocielliottc@users.noreply.github.com>2004-10-29 18:32:16 +0000
commitf8d83639f47e8c2a98786e33a7d97701854fdede (patch)
tree047a5d1fb8de7eabe18192b9e8cfa9987d97ae39
parent6267c6b936d6ec4e67ee25a07a818933e23fe43d (diff)
downloadATCD-f8d83639f47e8c2a98786e33a7d97701854fdede.tar.gz
ChangeLogTag: Fri Oct 29 13:31:31 2004 Chad Elliott <elliott_c@ociweb.com>
-rw-r--r--TAO/ChangeLog29
-rw-r--r--TAO/performance-tests/Protocols/distributor.cpp2
-rw-r--r--TAO/performance-tests/Protocols/receiver.cpp2
3 files changed, 20 insertions, 13 deletions
diff --git a/TAO/ChangeLog b/TAO/ChangeLog
index f163632dc97..c6a1745da61 100644
--- a/TAO/ChangeLog
+++ b/TAO/ChangeLog
@@ -1,20 +1,27 @@
+Fri Oct 29 13:31:31 2004 Chad Elliott <elliott_c@ociweb.com>
+
+ * performance-tests/Protocols/distributor.cpp:
+ * performance-tests/Protocols/receiver.cpp:
+
+ Getting rid of more g++ warnings.
+
Fri Oct 29 17:03:46 2004 Balachandran Natarajan <bala@dre.vanderbilt.edu>
- * orbsvcs/orbsvcs/Trader/Constraint_Visitors.cpp:
+ * orbsvcs/orbsvcs/Trader/Constraint_Visitors.cpp:
- Applied a patch from Bill Somerville <bill@classdesign.com>
- which fixes an incorrect implementation of ~ (twiddle) option.
+ Applied a patch from Bill Somerville <bill@classdesign.com>
+ which fixes an incorrect implementation of ~ (twiddle) option.
- a ~ b
+ a ~ b
should be true if a is a substring of b, it is implemented as
- true if b is a substring of a. The OMG spec is no help, but the
- TAO TradingService docs, code comments, and other sources all
- seem to agree with this interpretation.
-
- * orbsvcs/tests/Trading/TT_Info.cpp:
+ true if b is a substring of a. The OMG spec is no help, but the
+ TAO TradingService docs, code comments, and other sources all
+ seem to agree with this interpretation.
+
+ * orbsvcs/tests/Trading/TT_Info.cpp:
- Enhanced the test for the above.
+ Enhanced the test for the above.
Fri Oct 29 10:09:56 2004 Jeff Parsons <j.parsons@vanderbilt.edu>
@@ -24,7 +31,7 @@ Fri Oct 29 10:09:56 2004 Jeff Parsons <j.parsons@vanderbilt.edu>
* TAO_IDL/include/ast_union_branch.h:
* TAO_IDL/include/utl_scope.h:
* TAO_IDL/util/utl_scope.cpp:
-
+
When a union has an enum discriminator, each label name is
added to an existing list of identifiers for the union
scope, so that when a union member is added to the AST,
diff --git a/TAO/performance-tests/Protocols/distributor.cpp b/TAO/performance-tests/Protocols/distributor.cpp
index c0b36a65a56..6c789d5489d 100644
--- a/TAO/performance-tests/Protocols/distributor.cpp
+++ b/TAO/performance-tests/Protocols/distributor.cpp
@@ -434,7 +434,7 @@ main (int argc, char **argv)
ACE_OS::fprintf (output_file,
"%s",
ior.in ());
- ACE_ASSERT (result == ACE_OS::strlen (ior));
+ ACE_ASSERT (result == ACE_OS::strlen (ior.in ()));
ACE_UNUSED_ARG (result);
ACE_OS::fclose (output_file);
diff --git a/TAO/performance-tests/Protocols/receiver.cpp b/TAO/performance-tests/Protocols/receiver.cpp
index 774612dcfc6..752687fe1c8 100644
--- a/TAO/performance-tests/Protocols/receiver.cpp
+++ b/TAO/performance-tests/Protocols/receiver.cpp
@@ -399,7 +399,7 @@ main (int argc, char **argv)
ACE_OS::fprintf (output_file,
"%s",
ior.in ());
- ACE_ASSERT (result == ACE_OS::strlen (ior));
+ ACE_ASSERT (result == ACE_OS::strlen (ior.in ()));
ACE_UNUSED_ARG (result);
ACE_OS::fclose (output_file);