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 2009/03/26 20:43:54 UTC

svn commit: r758817 - /activemq/activemq-cpp/trunk/src/main/decaf/util/StlList.h

Author: tabish
Date: Thu Mar 26 19:43:54 2009
New Revision: 758817

URL: http://svn.apache.org/viewvc?rev=758817&view=rev
Log:
Fix the fix that was needed on windows so it also works on GCC

Modified:
    activemq/activemq-cpp/trunk/src/main/decaf/util/StlList.h

Modified: activemq/activemq-cpp/trunk/src/main/decaf/util/StlList.h
URL: http://svn.apache.org/viewvc/activemq/activemq-cpp/trunk/src/main/decaf/util/StlList.h?rev=758817&r1=758816&r2=758817&view=diff
==============================================================================
--- activemq/activemq-cpp/trunk/src/main/decaf/util/StlList.h (original)
+++ activemq/activemq-cpp/trunk/src/main/decaf/util/StlList.h Thu Mar 26 19:43:54 2009
@@ -259,7 +259,7 @@
          * @param source The source set.
          */
         StlList( const Collection<E>& source ) : List<E>() {
-			List::copy( source );
+            List<E>::copy( source );
         }
 
         virtual ~StlList() {}