summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorparsons <parsons@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>2011-12-16 18:25:55 +0000
committerparsons <parsons@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>2011-12-16 18:25:55 +0000
commit2763b6d6dc9fc2d750c630eb13c86871c75f61d0 (patch)
tree0a8b5a0330a5247259a1b9feaf3ae5b310eb5ff3
parent8da216ac978f80b7849f6cbc1b91771f150001ad (diff)
downloadATCD-2763b6d6dc9fc2d750c630eb13c86871c75f61d0.tar.gz
Fri Dec 16 18:25:19 UTC 2011 Jeff Parsons <j.parsons@vanderbilt.edu>
-rw-r--r--TAO/ChangeLog7
-rw-r--r--TAO/TAO_IDL/be_include/be_visitor_typecode/typecode_defn.h2
2 files changed, 8 insertions, 1 deletions
diff --git a/TAO/ChangeLog b/TAO/ChangeLog
index a7bfb3efb5a..ebcafd4a837 100644
--- a/TAO/ChangeLog
+++ b/TAO/ChangeLog
@@ -1,3 +1,10 @@
+Fri Dec 16 18:25:19 UTC 2011 Jeff Parsons <j.parsons@vanderbilt.edu>
+
+ * TAO_IDL/be_include/be_visitor_typecode/typecode_defn.h:
+
+ Change type of 'index_' member to unsigned long, to eliminate
+ signed/unsigned comparison warning.
+
Fri Dec 16 18:22:39 UTC 2011 Martin Corino <mcorino@remedy.nl>
* tao/Time_Policy_Manager.cpp:
diff --git a/TAO/TAO_IDL/be_include/be_visitor_typecode/typecode_defn.h b/TAO/TAO_IDL/be_include/be_visitor_typecode/typecode_defn.h
index 5666dfca547..ac5b57c9f17 100644
--- a/TAO/TAO_IDL/be_include/be_visitor_typecode/typecode_defn.h
+++ b/TAO/TAO_IDL/be_include/be_visitor_typecode/typecode_defn.h
@@ -135,7 +135,7 @@ private:
// scope related routines
- int index_;
+ unsigned long index_;
int push (ACE_CDR::Long);