Author: tabish
Date: Mon Apr 5 14:05:29 2010
New Revision: 930861
URL: http://svn.apache.org/viewvc?rev=930861&view=rev
Log:
Fix compilation error on clone method.
Modified:
activemq/activemq-cpp/trunk/activemq-cpp/src/main/decaf/io/InterruptedIOException.h
Modified:
activemq/activemq-cpp/trunk/activemq-cpp/src/main/decaf/io/InterruptedIOException.h
URL:
http://svn.apache.org/viewvc/activemq/activemq-cpp/trunk/activemq-cpp/src/main/decaf/io/InterruptedIOException.h?rev=930861&r1=930860&r2=930861&view=diff
==============================================================================
---
activemq/activemq-cpp/trunk/activemq-cpp/src/main/decaf/io/InterruptedIOException.h
(original)
+++
activemq/activemq-cpp/trunk/activemq-cpp/src/main/decaf/io/InterruptedIOException.h
Mon Apr 5 14:05:29 2010
@@ -108,7 +108,7 @@ namespace io{
* @return a new exception that is a copy of this one.
*/
virtual InterruptedIOException* clone() const {
- return new IOException( *this );
+ return new InterruptedIOException( *this );
}
virtual ~InterruptedIOException() throw() {}