You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@activemq.apache.org by ta...@apache.org on 2007/12/05 21:06:59 UTC

svn commit: r601496 - /activemq/activemq-cpp/tags/activemq-cpp-2.1.3/src/examples/producers/SimpleProducer.cpp

Author: tabish
Date: Wed Dec  5 12:06:58 2007
New Revision: 601496

URL: http://svn.apache.org/viewvc?rev=601496&view=rev
Log:
Creating new tag for a 2.1.3 release
http://issues.apache.org/activemq/browse/AMQCPP-154

Modified:
    activemq/activemq-cpp/tags/activemq-cpp-2.1.3/src/examples/producers/SimpleProducer.cpp

Modified: activemq/activemq-cpp/tags/activemq-cpp-2.1.3/src/examples/producers/SimpleProducer.cpp
URL: http://svn.apache.org/viewvc/activemq/activemq-cpp/tags/activemq-cpp-2.1.3/src/examples/producers/SimpleProducer.cpp?rev=601496&r1=601495&r2=601496&view=diff
==============================================================================
--- activemq/activemq-cpp/tags/activemq-cpp-2.1.3/src/examples/producers/SimpleProducer.cpp (original)
+++ activemq/activemq-cpp/tags/activemq-cpp-2.1.3/src/examples/producers/SimpleProducer.cpp Wed Dec  5 12:06:58 2007
@@ -112,7 +112,7 @@
             // Create a messages
             string text = (string)"Hello world! from thread " + threadIdStr;
 
-            for( int ix=0; ix<numMessages; ++ix ){
+            for( std::size_t ix=0; ix<numMessages; ++ix ){
                 TextMessage* message = session->createTextMessage( text );
 
                 message->setIntProperty( "Integer", ix );