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 2006/12/15 13:39:54 UTC

svn commit: r487532 - /incubator/activemq/activemq-cpp/trunk/activemq-cpp/src/main/activemq/io/BlockingByteArrayInputStream.h

Author: tabish
Date: Fri Dec 15 04:39:53 2006
New Revision: 487532

URL: http://svn.apache.org/viewvc?view=rev&rev=487532
Log:
http://issues.apache.org/activemq/browse/AMQCPP-16

fix constness issue.

Modified:
    incubator/activemq/activemq-cpp/trunk/activemq-cpp/src/main/activemq/io/BlockingByteArrayInputStream.h

Modified: incubator/activemq/activemq-cpp/trunk/activemq-cpp/src/main/activemq/io/BlockingByteArrayInputStream.h
URL: http://svn.apache.org/viewvc/incubator/activemq/activemq-cpp/trunk/activemq-cpp/src/main/activemq/io/BlockingByteArrayInputStream.h?view=diff&rev=487532&r1=487531&r2=487532
==============================================================================
--- incubator/activemq/activemq-cpp/trunk/activemq-cpp/src/main/activemq/io/BlockingByteArrayInputStream.h (original)
+++ incubator/activemq/activemq-cpp/trunk/activemq-cpp/src/main/activemq/io/BlockingByteArrayInputStream.h Fri Dec 15 04:39:53 2006
@@ -174,7 +174,7 @@
          * @return the number of bytes read.
          * @throws IOException f an error occurs.
          */
-        virtual int read( unsigned char* buffer, const int bufferSize )
+        virtual int read( unsigned char* buffer, int bufferSize )
             throw (IOException);
             
         /**