summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorparsons <parsons@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>1999-08-11 03:05:00 +0000
committerparsons <parsons@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>1999-08-11 03:05:00 +0000
commitd8dca0581fca355f3b6afcd575db3c0413eeb8e9 (patch)
tree682f320e176dd205c4c860a4f8b1a9776bbef3ae
parent8ed297a6a8ceceb7f96839670971586900a0c519 (diff)
downloadATCD-d8dca0581fca355f3b6afcd575db3c0413eeb8e9.tar.gz
* TAO_IDL/fe/lex.yy.cpp:
* TAO/fe/lex.yy.cpp.diff: Substituted a hard 'break;' for TAO_YY_BREAK in two places. TAO_YY_BREAK is defined as ACE_NOTREACHED (break;), which, for some compilers, is defined in OS.h as a null statement. TAO_YY_BREAK is used in many places after a 'return xxx' statement, but in the aforementioned two places, there was no 'return', so for those compilers, control was falling through to the next case. Thanks to Christopher Kohlhoff <chris@kohlhoff.com> for tracking this down on Borland C++ Builder.
-rw-r--r--TAO/ChangeLog-99c15
1 files changed, 15 insertions, 0 deletions
diff --git a/TAO/ChangeLog-99c b/TAO/ChangeLog-99c
index d3c0c50ad43..5bedd1b722c 100644
--- a/TAO/ChangeLog-99c
+++ b/TAO/ChangeLog-99c
@@ -1,3 +1,18 @@
+Tue Aug 10 21:55:52 1999 Jeff Parsons <parsons@cs.wustl.edu>
+
+ * TAO_IDL/fe/lex.yy.cpp:
+ * TAO/fe/lex.yy.cpp.diff:
+ Substituted a hard 'break;' for TAO_YY_BREAK in
+ two places. TAO_YY_BREAK is defined as
+ ACE_NOTREACHED (break;), which, for some compilers,
+ is defined in OS.h as a null statement. TAO_YY_BREAK
+ is used in many places after a 'return xxx' statement,
+ but in the aforementioned two places, there was no
+ 'return', so for those compilers, control was falling
+ through to the next case. Thanks to
+ Christopher Kohlhoff <chris@kohlhoff.com> for tracking
+ this down on Borland C++ Builder.
+
Tue Aug 10 20:40:32 1999 Carlos O'Ryan <coryan@cs.wustl.edu>
* orbsvcs/orbsvcs/Event/EC_Priority_Dispatching.cpp: