You are viewing a plain text version of this content. The canonical link for it is here.
Posted to log4cxx-dev@logging.apache.org by ca...@apache.org on 2007/11/28 07:12:30 UTC

svn commit: r598876 - /logging/log4cxx/trunk/src/main/include/log4cxx/stream.h

Author: carnold
Date: Tue Nov 27 22:12:28 2007
New Revision: 598876

URL: http://svn.apache.org/viewvc?rev=598876&view=rev
Log:
LOGCXX-18:Drop unnecessary semi-colon from LOG4CXX_ENDMSG

Modified:
    logging/log4cxx/trunk/src/main/include/log4cxx/stream.h

Modified: logging/log4cxx/trunk/src/main/include/log4cxx/stream.h
URL: http://svn.apache.org/viewvc/logging/log4cxx/trunk/src/main/include/log4cxx/stream.h?rev=598876&r1=598875&r2=598876&view=diff
==============================================================================
--- logging/log4cxx/trunk/src/main/include/log4cxx/stream.h (original)
+++ logging/log4cxx/trunk/src/main/include/log4cxx/stream.h Tue Nov 27 22:12:28 2007
@@ -473,9 +473,9 @@
 
 #if !defined(LOG4CXX_ENDMSG)
 #if LOG4CXX_LOGSTREAM_ADD_NOP
-#define LOG4CXX_ENDMSG (log4cxx::logstream_manipulator) log4cxx::logstream_base::nop >> LOG4CXX_LOCATION << (log4cxx::logstream_manipulator) log4cxx::logstream_base::endmsg;
+#define LOG4CXX_ENDMSG (log4cxx::logstream_manipulator) log4cxx::logstream_base::nop >> LOG4CXX_LOCATION << (log4cxx::logstream_manipulator) log4cxx::logstream_base::endmsg
 #else
-#define LOG4CXX_ENDMSG LOG4CXX_LOCATION << (log4cxx::logstream_manipulator) log4cxx::logstream_base::endmsg;
+#define LOG4CXX_ENDMSG LOG4CXX_LOCATION << (log4cxx::logstream_manipulator) log4cxx::logstream_base::endmsg
 #endif
 #endif