Author: tabish
Date: Mon Jun 2 12:27:56 2008
New Revision: 662527
URL: http://svn.apache.org/viewvc?rev=662527&view=rev
Log:
Cleanup code for up-coming 2.2 release, fixing warnings etc on windows.
Modified:
activemq/activemq-cpp/trunk/src/main/activemq/connector/openwire/marshal/PrimitiveMapMarshaller.cpp
Modified:
activemq/activemq-cpp/trunk/src/main/activemq/connector/openwire/marshal/PrimitiveMapMarshaller.cpp
URL:
http://svn.apache.org/viewvc/activemq/activemq-cpp/trunk/src/main/activemq/connector/openwire/marshal/PrimitiveMapMarshaller.cpp?rev=662527&r1=662526&r2=662527&view=diff
==============================================================================
---
activemq/activemq-cpp/trunk/src/main/activemq/connector/openwire/marshal/PrimitiveMapMarshaller.cpp
(original)
+++
activemq/activemq-cpp/trunk/src/main/activemq/connector/openwire/marshal/PrimitiveMapMarshaller.cpp
Mon Jun 2 12:27:56 2008
@@ -141,7 +141,7 @@
throw ( decaf::io::IOException ) {
try{
- dataOut.writeInt( list.size() );
+ dataOut.writeInt( (int)list.size() );
for( std::size_t ix = 0; ix < list.size(); ++ix ) {
marshalPrimitive( dataOut, list.get( ix ) );