summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorWilliam R. Otte <wotte@dre.vanderbilt.edu>2008-06-02 14:05:00 +0000
committerWilliam R. Otte <wotte@dre.vanderbilt.edu>2008-06-02 14:05:00 +0000
commit41c6ed56d50e8f53a2b6cd095bdbbdd559a93ad7 (patch)
treea3ac458f4938f1e93e1d42c226537551d778cf71
parent5e88b14bf0a774db4f779299c7bab5012ab54b53 (diff)
downloadATCD-41c6ed56d50e8f53a2b6cd095bdbbdd559a93ad7.tar.gz
ChangeLogTag: Mon Jun 2 14:02:02 UTC 2008 William R. Otte <wotte@dre.vanderbilt.edu>
-rw-r--r--TAO/ChangeLog11
-rw-r--r--TAO/TAO_IDL/fe/lex.yy.cpp2
2 files changed, 10 insertions, 3 deletions
diff --git a/TAO/ChangeLog b/TAO/ChangeLog
index e30f226b10a..a4f5fea7049 100644
--- a/TAO/ChangeLog
+++ b/TAO/ChangeLog
@@ -1,10 +1,17 @@
+Mon Jun 2 14:02:02 UTC 2008 William R. Otte <wotte@dre.vanderbilt.edu>
+
+ * TAO_IDL/fe/lex.yy.cpp:
+
+ Manually fixed an issue in flex generated code that was causing a
+ signed/unsigned mismatch.
+
Sun Jun 1 23:14:35 UTC 2008 William R. Otte <wotte@dre.vanderbilt.edu>
* MPC/config/tao_idl_mcpp.mpb:
Fully qualified paths to driver source files for non-tao_idl
- projects using this base.
-
+ projects using this base.
+
Sun Jun 1 23:11:34 UTC 2008 William R. Otte <wotte@dre.vanderbilt.edu>
* TAO_IDL/fe/mcpp_tao_yyinput.h:
diff --git a/TAO/TAO_IDL/fe/lex.yy.cpp b/TAO/TAO_IDL/fe/lex.yy.cpp
index ed77a623473..68de17aad33 100644
--- a/TAO/TAO_IDL/fe/lex.yy.cpp
+++ b/TAO/TAO_IDL/fe/lex.yy.cpp
@@ -1078,7 +1078,7 @@ static int input (void );
if ( TAO_YY_CURRENT_BUFFER_LVALUE->tao_yy_is_interactive ) \
{ \
int c = '*'; \
- size_t n; \
+ int n; \
for ( n = 0; n < max_size && \
(c = getc( tao_yyin )) != EOF && c != '\n'; ++n ) \
buf[n] = (char) c; \