You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@activemq.apache.org by nm...@apache.org on 2007/01/23 01:38:17 UTC

svn commit: r498873 - in /incubator/activemq/activemq-cpp/trunk/activemq-cpp/src: main/activemq/concurrent/ test/activemq/logger/

Author: nmittler
Date: Mon Jan 22 16:38:15 2007
New Revision: 498873

URL: http://svn.apache.org/viewvc?view=rev&rev=498873
Log:
[AMQCPP-49] - Updating source for warnings due to -ansi

Modified:
    incubator/activemq/activemq-cpp/trunk/activemq-cpp/src/main/activemq/concurrent/PooledThread.cpp
    incubator/activemq/activemq-cpp/trunk/activemq-cpp/src/main/activemq/concurrent/PooledThread.h
    incubator/activemq/activemq-cpp/trunk/activemq-cpp/src/main/activemq/concurrent/ThreadPool.cpp
    incubator/activemq/activemq-cpp/trunk/activemq-cpp/src/main/activemq/concurrent/ThreadPool.h
    incubator/activemq/activemq-cpp/trunk/activemq-cpp/src/test/activemq/logger/LoggerTest.h

Modified: incubator/activemq/activemq-cpp/trunk/activemq-cpp/src/main/activemq/concurrent/PooledThread.cpp
URL: http://svn.apache.org/viewvc/incubator/activemq/activemq-cpp/trunk/activemq-cpp/src/main/activemq/concurrent/PooledThread.cpp?view=diff&rev=498873&r1=498872&r2=498873
==============================================================================
--- incubator/activemq/activemq-cpp/trunk/activemq-cpp/src/main/activemq/concurrent/PooledThread.cpp (original)
+++ incubator/activemq/activemq-cpp/trunk/activemq-cpp/src/main/activemq/concurrent/PooledThread.cpp Mon Jan 22 16:38:15 2007
@@ -25,7 +25,7 @@
 using namespace activemq::concurrent;
 
 ////////////////////////////////////////////////////////////////////////////////
-LOGCMS_INITIALIZE(logger, PooledThread, "com.activemq.concurrent.PooledThread");
+LOGCMS_INITIALIZE(logger, PooledThread, "com.activemq.concurrent.PooledThread")
 
 ////////////////////////////////////////////////////////////////////////////////
 PooledThread::PooledThread(ThreadPool* pool)

Modified: incubator/activemq/activemq-cpp/trunk/activemq-cpp/src/main/activemq/concurrent/PooledThread.h
URL: http://svn.apache.org/viewvc/incubator/activemq/activemq-cpp/trunk/activemq-cpp/src/main/activemq/concurrent/PooledThread.h?view=diff&rev=498873&r1=498872&r2=498873
==============================================================================
--- incubator/activemq/activemq-cpp/trunk/activemq-cpp/src/main/activemq/concurrent/PooledThread.h (original)
+++ incubator/activemq/activemq-cpp/trunk/activemq-cpp/src/main/activemq/concurrent/PooledThread.h Mon Jan 22 16:38:15 2007
@@ -47,7 +47,7 @@
         ThreadPool* pool;
 
         // Logger Init
-        LOGCMS_DECLARE(logger);
+        LOGCMS_DECLARE(logger)
       
      public:
    

Modified: incubator/activemq/activemq-cpp/trunk/activemq-cpp/src/main/activemq/concurrent/ThreadPool.cpp
URL: http://svn.apache.org/viewvc/incubator/activemq/activemq-cpp/trunk/activemq-cpp/src/main/activemq/concurrent/ThreadPool.cpp?view=diff&rev=498873&r1=498872&r2=498873
==============================================================================
--- incubator/activemq/activemq-cpp/trunk/activemq-cpp/src/main/activemq/concurrent/ThreadPool.cpp (original)
+++ incubator/activemq/activemq-cpp/trunk/activemq-cpp/src/main/activemq/concurrent/ThreadPool.cpp Mon Jan 22 16:38:15 2007
@@ -31,8 +31,8 @@
 using namespace activemq::concurrent;
 
 ////////////////////////////////////////////////////////////////////////////////
-LOGCMS_INITIALIZE(logger, ThreadPool, "com.activemq.concurrent.ThreadPool");
-LOGCMS_INITIALIZE(marker, ThreadPool, "com.activemq.concurrent.ThreadPool.Marker");
+LOGCMS_INITIALIZE(logger, ThreadPool, "com.activemq.concurrent.ThreadPool")
+LOGCMS_INITIALIZE(marker, ThreadPool, "com.activemq.concurrent.ThreadPool.Marker")
 
 ////////////////////////////////////////////////////////////////////////////////
 ThreadPool ThreadPool::instance;

Modified: incubator/activemq/activemq-cpp/trunk/activemq-cpp/src/main/activemq/concurrent/ThreadPool.h
URL: http://svn.apache.org/viewvc/incubator/activemq/activemq-cpp/trunk/activemq-cpp/src/main/activemq/concurrent/ThreadPool.h?view=diff&rev=498873&r1=498872&r2=498873
==============================================================================
--- incubator/activemq/activemq-cpp/trunk/activemq-cpp/src/main/activemq/concurrent/ThreadPool.h (original)
+++ incubator/activemq/activemq-cpp/trunk/activemq-cpp/src/main/activemq/concurrent/ThreadPool.h Mon Jan 22 16:38:15 2007
@@ -81,8 +81,8 @@
         Mutex poolLock;
 
         // Logger Init 
-        LOGCMS_DECLARE(logger);
-        LOGCMS_DECLARE(marker);
+        LOGCMS_DECLARE(logger)
+        LOGCMS_DECLARE(marker)
       
     private:   // Statics
    

Modified: incubator/activemq/activemq-cpp/trunk/activemq-cpp/src/test/activemq/logger/LoggerTest.h
URL: http://svn.apache.org/viewvc/incubator/activemq/activemq-cpp/trunk/activemq-cpp/src/test/activemq/logger/LoggerTest.h?view=diff&rev=498873&r1=498872&r2=498873
==============================================================================
--- incubator/activemq/activemq-cpp/trunk/activemq-cpp/src/test/activemq/logger/LoggerTest.h (original)
+++ incubator/activemq/activemq-cpp/trunk/activemq-cpp/src/test/activemq/logger/LoggerTest.h Mon Jan 22 16:38:15 2007
@@ -33,7 +33,7 @@
 
    private:
    
-      LOGCMS_DECLARE(testLogger);
+      LOGCMS_DECLARE(testLogger)
       
    public:
 
@@ -51,7 +51,7 @@
       }
    };
 
-   LOGCMS_INITIALIZE(testLogger, LoggerTest, "com.activemq.logger.LoggerTest");
+   LOGCMS_INITIALIZE(testLogger, LoggerTest, "com.activemq.logger.LoggerTest")
 
 }}