Author: tabish
Date: Mon Nov 15 23:41:18 2010
New Revision: 1035488
URL: http://svn.apache.org/viewvc?rev=1035488&view=rev
Log:
add missing const qualifier to get method.
Modified:
activemq/activemq-cpp/trunk/activemq-cpp/src/main/cms/Xid.h
Modified: activemq/activemq-cpp/trunk/activemq-cpp/src/main/cms/Xid.h
URL:
http://svn.apache.org/viewvc/activemq/activemq-cpp/trunk/activemq-cpp/src/main/cms/Xid.h?rev=1035488&r1=1035487&r2=1035488&view=diff
==============================================================================
--- activemq/activemq-cpp/trunk/activemq-cpp/src/main/cms/Xid.h (original)
+++ activemq/activemq-cpp/trunk/activemq-cpp/src/main/cms/Xid.h Mon Nov 15
23:41:18 2010
@@ -114,7 +114,7 @@ namespace cms {
*
* @throws CMSException if the size parameter is less than zero or
buffer is NULL.
*/
- virtual int getGlobalTransactionId( unsigned char* buffer, int size )
= 0;
+ virtual int getGlobalTransactionId( unsigned char* buffer, int size )
const = 0;
};