summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorWilliam R. Otte <wotte@dre.vanderbilt.edu>2008-06-01 23:12:09 +0000
committerWilliam R. Otte <wotte@dre.vanderbilt.edu>2008-06-01 23:12:09 +0000
commitda1c8549a341c0f41948fb9916c2ceb67827dbac (patch)
treea539ca1abd3646c5a2df289bd31391dfb3abccde
parent8bcc1837f4bb87e5f692f24ae5574e6996eed69d (diff)
downloadATCD-da1c8549a341c0f41948fb9916c2ceb67827dbac.tar.gz
ChangeLogTag: Sun Jun 1 23:11:34 UTC 2008 William R. Otte <wotte@dre.vanderbilt.edu>
-rw-r--r--TAO/ChangeLog10
-rw-r--r--TAO/TAO_IDL/fe/mcpp_tao_yyinput.h4
2 files changed, 10 insertions, 4 deletions
diff --git a/TAO/ChangeLog b/TAO/ChangeLog
index f281c5be2d9..627618489c5 100644
--- a/TAO/ChangeLog
+++ b/TAO/ChangeLog
@@ -1,3 +1,9 @@
+Sun Jun 1 23:11:34 UTC 2008 William R. Otte <wotte@dre.vanderbilt.edu>
+
+ * TAO_IDL/fe/mcpp_tao_yyinput.h:
+
+ Fixed signed/unsigned mismatch.
+
Sun Jun 1 22:58:39 UTC 2008 William R. Otte <wotte@dre.vanderbilt.edu>
* TAO_IDL/contrib/mcpp/directive.cpp:
@@ -7,8 +13,8 @@ Sun Jun 1 22:58:39 UTC 2008 William R. Otte <wotte@dre.vanderbilt.edu>
* TAO_IDL/contrib/mcpp/system.cpp:
* TAO_IDL/driver/drv_mcpp_preproc.cpp:
- Fixed warnings exposed on Debian Core build.
-
+ Fixed warnings exposed on Debian Core build.
+
Sat May 31 22:06:27 UTC 2008 William R. Otte <wotte@dre.vanderbilt.edu>
* MPC/config/tao_idl_mcpp.mpb:
diff --git a/TAO/TAO_IDL/fe/mcpp_tao_yyinput.h b/TAO/TAO_IDL/fe/mcpp_tao_yyinput.h
index ade25f68a3e..bd1534826b8 100644
--- a/TAO/TAO_IDL/fe/mcpp_tao_yyinput.h
+++ b/TAO/TAO_IDL/fe/mcpp_tao_yyinput.h
@@ -10,9 +10,9 @@
#define MCPP_YYINPUT_H
extern char *tao_preproc_buffer;
-extern size_t tao_preproc_buffer_length;
+extern int tao_preproc_buffer_length;
-size_t tao_preproc_buffer_pos = 0;
+int tao_preproc_buffer_pos = 0;
#define TAO_YY_INPUT(buf,result,max_size) \
{ \