Author: carnold
Date: Mon Feb 25 21:52:35 2008
New Revision: 631088
URL: http://svn.apache.org/viewvc?rev=631088&view=rev
Log:
LOGCXX-219: Require trailing semicolon on LOG4CXX_PTR_DEF
Modified:
logging/log4cxx/trunk/src/main/include/log4cxx/appender.h
logging/log4cxx/trunk/src/main/include/log4cxx/asyncappender.h
logging/log4cxx/trunk/src/main/include/log4cxx/consoleappender.h
logging/log4cxx/trunk/src/main/include/log4cxx/dailyrollingfileappender.h
logging/log4cxx/trunk/src/main/include/log4cxx/helpers/appenderattachableimpl.h
logging/log4cxx/trunk/src/main/include/log4cxx/helpers/bufferedoutputstream.h
logging/log4cxx/trunk/src/main/include/log4cxx/helpers/bytearrayinputstream.h
logging/log4cxx/trunk/src/main/include/log4cxx/helpers/bytearrayoutputstream.h
logging/log4cxx/trunk/src/main/include/log4cxx/helpers/charsetdecoder.h
logging/log4cxx/trunk/src/main/include/log4cxx/helpers/charsetencoder.h
logging/log4cxx/trunk/src/main/include/log4cxx/helpers/dateformat.h
logging/log4cxx/trunk/src/main/include/log4cxx/helpers/inetaddress.h
logging/log4cxx/trunk/src/main/include/log4cxx/helpers/objectoutputstream.h
logging/log4cxx/trunk/src/main/include/log4cxx/helpers/outputstream.h
logging/log4cxx/trunk/src/main/include/log4cxx/helpers/outputstreamwriter.h
logging/log4cxx/trunk/src/main/include/log4cxx/helpers/resourcebundle.h
logging/log4cxx/trunk/src/main/include/log4cxx/helpers/simpledateformat.h
logging/log4cxx/trunk/src/main/include/log4cxx/helpers/socket.h
logging/log4cxx/trunk/src/main/include/log4cxx/helpers/socketimpl.h
logging/log4cxx/trunk/src/main/include/log4cxx/helpers/socketoutputstream.h
logging/log4cxx/trunk/src/main/include/log4cxx/helpers/timezone.h
logging/log4cxx/trunk/src/main/include/log4cxx/layout.h
logging/log4cxx/trunk/src/main/include/log4cxx/level.h
logging/log4cxx/trunk/src/main/include/log4cxx/log4cxx.h.in
logging/log4cxx/trunk/src/main/include/log4cxx/log4cxx.hw
logging/log4cxx/trunk/src/main/include/log4cxx/logger.h
logging/log4cxx/trunk/src/main/include/log4cxx/net/sockethubappender.h
logging/log4cxx/trunk/src/main/include/log4cxx/net/telnetappender.h
logging/log4cxx/trunk/src/main/include/log4cxx/pattern/nameabbreviator.h
logging/log4cxx/trunk/src/main/include/log4cxx/pattern/patternconverter.h
logging/log4cxx/trunk/src/main/include/log4cxx/patternlayout.h
logging/log4cxx/trunk/src/main/include/log4cxx/rolling/action.h
logging/log4cxx/trunk/src/main/include/log4cxx/rolling/rollingfileappender.h
logging/log4cxx/trunk/src/main/include/log4cxx/rolling/rollingfileappenderskeleton.h
logging/log4cxx/trunk/src/main/include/log4cxx/rolling/rollingpolicy.h
logging/log4cxx/trunk/src/main/include/log4cxx/rolling/rollingpolicybase.h
logging/log4cxx/trunk/src/main/include/log4cxx/rolling/triggeringpolicy.h
logging/log4cxx/trunk/src/main/include/log4cxx/rollingfileappender.h
logging/log4cxx/trunk/src/main/include/log4cxx/spi/appenderattachable.h
logging/log4cxx/trunk/src/main/include/log4cxx/spi/configurator.h
logging/log4cxx/trunk/src/main/include/log4cxx/spi/errorhandler.h
logging/log4cxx/trunk/src/main/include/log4cxx/spi/hierarchyeventlistener.h
logging/log4cxx/trunk/src/main/include/log4cxx/spi/loggingevent.h
Modified: logging/log4cxx/trunk/src/main/include/log4cxx/appender.h
URL:
http://svn.apache.org/viewvc/logging/log4cxx/trunk/src/main/include/log4cxx/appender.h?rev=631088&r1=631087&r2=631088&view=diff
==============================================================================
--- logging/log4cxx/trunk/src/main/include/log4cxx/appender.h (original)
+++ logging/log4cxx/trunk/src/main/include/log4cxx/appender.h Mon Feb 25
21:52:35 2008
@@ -136,8 +136,8 @@
virtual bool requiresLayout() const = 0;
};
- LOG4CXX_PTR_DEF(Appender)
- LOG4CXX_LIST_DEF(AppenderList, AppenderPtr)
+ LOG4CXX_PTR_DEF(Appender);
+ LOG4CXX_LIST_DEF(AppenderList, AppenderPtr);
}
Modified: logging/log4cxx/trunk/src/main/include/log4cxx/asyncappender.h
URL:
http://svn.apache.org/viewvc/logging/log4cxx/trunk/src/main/include/log4cxx/asyncappender.h?rev=631088&r1=631087&r2=631088&view=diff
==============================================================================
--- logging/log4cxx/trunk/src/main/include/log4cxx/asyncappender.h (original)
+++ logging/log4cxx/trunk/src/main/include/log4cxx/asyncappender.h Mon Feb 25
21:52:35 2008
@@ -194,7 +194,7 @@
/**
* Event buffer.
*/
- LOG4CXX_LIST_DEF(LoggingEventList,
log4cxx::spi::LoggingEventPtr)
+ LOG4CXX_LIST_DEF(LoggingEventList,
log4cxx::spi::LoggingEventPtr);
LoggingEventList buffer;
/**
@@ -280,7 +280,7 @@
static void* LOG4CXX_THREAD_FUNC
dispatch(helpers::log4cxx_thread_t* thread, void* data);
}; // class AsyncAppender
- LOG4CXX_PTR_DEF(AsyncAppender)
+ LOG4CXX_PTR_DEF(AsyncAppender);
} // namespace log4cxx
#if defined(_MSC_VER)
Modified: logging/log4cxx/trunk/src/main/include/log4cxx/consoleappender.h
URL:
http://svn.apache.org/viewvc/logging/log4cxx/trunk/src/main/include/log4cxx/consoleappender.h?rev=631088&r1=631087&r2=631088&view=diff
==============================================================================
--- logging/log4cxx/trunk/src/main/include/log4cxx/consoleappender.h (original)
+++ logging/log4cxx/trunk/src/main/include/log4cxx/consoleappender.h Mon Feb 25
21:52:35 2008
@@ -72,7 +72,7 @@
static log4cxx::helpers::WriterPtr createWriter(const
LogString& target);
};
- LOG4CXX_PTR_DEF(ConsoleAppender)
+ LOG4CXX_PTR_DEF(ConsoleAppender);
} //namespace log4cxx
#endif //_LOG4CXX_CONSOLE_APPENDER_H
Modified:
logging/log4cxx/trunk/src/main/include/log4cxx/dailyrollingfileappender.h
URL:
http://svn.apache.org/viewvc/logging/log4cxx/trunk/src/main/include/log4cxx/dailyrollingfileappender.h?rev=631088&r1=631087&r2=631088&view=diff
==============================================================================
--- logging/log4cxx/trunk/src/main/include/log4cxx/dailyrollingfileappender.h
(original)
+++ logging/log4cxx/trunk/src/main/include/log4cxx/dailyrollingfileappender.h
Mon Feb 25 21:52:35 2008
@@ -191,7 +191,7 @@
};
-LOG4CXX_PTR_DEF(DailyRollingFileAppender)
+LOG4CXX_PTR_DEF(DailyRollingFileAppender);
}
Modified:
logging/log4cxx/trunk/src/main/include/log4cxx/helpers/appenderattachableimpl.h
URL:
http://svn.apache.org/viewvc/logging/log4cxx/trunk/src/main/include/log4cxx/helpers/appenderattachableimpl.h?rev=631088&r1=631087&r2=631088&view=diff
==============================================================================
---
logging/log4cxx/trunk/src/main/include/log4cxx/helpers/appenderattachableimpl.h
(original)
+++
logging/log4cxx/trunk/src/main/include/log4cxx/helpers/appenderattachableimpl.h
Mon Feb 25 21:52:35 2008
@@ -116,7 +116,7 @@
AppenderAttachableImpl& operator=(const AppenderAttachableImpl&);
};
- LOG4CXX_PTR_DEF(AppenderAttachableImpl)
+ LOG4CXX_PTR_DEF(AppenderAttachableImpl);
}
}
Modified:
logging/log4cxx/trunk/src/main/include/log4cxx/helpers/bufferedoutputstream.h
URL:
http://svn.apache.org/viewvc/logging/log4cxx/trunk/src/main/include/log4cxx/helpers/bufferedoutputstream.h?rev=631088&r1=631087&r2=631088&view=diff
==============================================================================
---
logging/log4cxx/trunk/src/main/include/log4cxx/helpers/bufferedoutputstream.h
(original)
+++
logging/log4cxx/trunk/src/main/include/log4cxx/helpers/bufferedoutputstream.h
Mon Feb 25 21:52:35 2008
@@ -55,7 +55,7 @@
BufferedOutputStream& operator=(const BufferedOutputStream&);
};
- LOG4CXX_PTR_DEF(BufferedOutputStream)
+ LOG4CXX_PTR_DEF(BufferedOutputStream);
} // namespace helpers
} //namespace log4cxx
Modified:
logging/log4cxx/trunk/src/main/include/log4cxx/helpers/bytearrayinputstream.h
URL:
http://svn.apache.org/viewvc/logging/log4cxx/trunk/src/main/include/log4cxx/helpers/bytearrayinputstream.h?rev=631088&r1=631087&r2=631088&view=diff
==============================================================================
---
logging/log4cxx/trunk/src/main/include/log4cxx/helpers/bytearrayinputstream.h
(original)
+++
logging/log4cxx/trunk/src/main/include/log4cxx/helpers/bytearrayinputstream.h
Mon Feb 25 21:52:35 2008
@@ -39,7 +39,7 @@
class LOG4CXX_EXPORT ByteArrayInputStream : public InputStream
{
private:
- LOG4CXX_LIST_DEF(ByteList, unsigned char)
+ LOG4CXX_LIST_DEF(ByteList, unsigned char);
ByteList buf;
size_t pos;
@@ -82,7 +82,7 @@
};
- LOG4CXX_PTR_DEF(ByteArrayInputStream)
+ LOG4CXX_PTR_DEF(ByteArrayInputStream);
} // namespace helpers
} //namespace log4cxx
Modified:
logging/log4cxx/trunk/src/main/include/log4cxx/helpers/bytearrayoutputstream.h
URL:
http://svn.apache.org/viewvc/logging/log4cxx/trunk/src/main/include/log4cxx/helpers/bytearrayoutputstream.h?rev=631088&r1=631087&r2=631088&view=diff
==============================================================================
---
logging/log4cxx/trunk/src/main/include/log4cxx/helpers/bytearrayoutputstream.h
(original)
+++
logging/log4cxx/trunk/src/main/include/log4cxx/helpers/bytearrayoutputstream.h
Mon Feb 25 21:52:35 2008
@@ -41,7 +41,7 @@
class LOG4CXX_EXPORT ByteArrayOutputStream : public OutputStream
{
private:
- LOG4CXX_LIST_DEF(ByteList, unsigned char)
+ LOG4CXX_LIST_DEF(ByteList, unsigned char);
ByteList array;
public:
@@ -64,7 +64,7 @@
ByteArrayOutputStream& operator=(const
ByteArrayOutputStream&);
};
- LOG4CXX_PTR_DEF(ByteArrayOutputStream)
+ LOG4CXX_PTR_DEF(ByteArrayOutputStream);
} // namespace helpers
} //namespace log4cxx
Modified:
logging/log4cxx/trunk/src/main/include/log4cxx/helpers/charsetdecoder.h
URL:
http://svn.apache.org/viewvc/logging/log4cxx/trunk/src/main/include/log4cxx/helpers/charsetdecoder.h?rev=631088&r1=631087&r2=631088&view=diff
==============================================================================
--- logging/log4cxx/trunk/src/main/include/log4cxx/helpers/charsetdecoder.h
(original)
+++ logging/log4cxx/trunk/src/main/include/log4cxx/helpers/charsetdecoder.h Mon
Feb 25 21:52:35 2008
@@ -24,7 +24,7 @@
{
namespace helpers {
class CharsetDecoder;
- LOG4CXX_PTR_DEF(CharsetDecoder)
+ LOG4CXX_PTR_DEF(CharsetDecoder);
class ByteBuffer;
Modified:
logging/log4cxx/trunk/src/main/include/log4cxx/helpers/charsetencoder.h
URL:
http://svn.apache.org/viewvc/logging/log4cxx/trunk/src/main/include/log4cxx/helpers/charsetencoder.h?rev=631088&r1=631087&r2=631088&view=diff
==============================================================================
--- logging/log4cxx/trunk/src/main/include/log4cxx/helpers/charsetencoder.h
(original)
+++ logging/log4cxx/trunk/src/main/include/log4cxx/helpers/charsetencoder.h Mon
Feb 25 21:52:35 2008
@@ -27,7 +27,7 @@
namespace helpers {
class ByteBuffer;
class CharsetEncoder;
- LOG4CXX_PTR_DEF(CharsetEncoder)
+ LOG4CXX_PTR_DEF(CharsetEncoder);
/**
* An engine to transform LogStrings into bytes
Modified: logging/log4cxx/trunk/src/main/include/log4cxx/helpers/dateformat.h
URL:
http://svn.apache.org/viewvc/logging/log4cxx/trunk/src/main/include/log4cxx/helpers/dateformat.h?rev=631088&r1=631087&r2=631088&view=diff
==============================================================================
--- logging/log4cxx/trunk/src/main/include/log4cxx/helpers/dateformat.h
(original)
+++ logging/log4cxx/trunk/src/main/include/log4cxx/helpers/dateformat.h Mon Feb
25 21:52:35 2008
@@ -83,7 +83,7 @@
*/
DateFormat& operator=(const DateFormat&);
};
- LOG4CXX_PTR_DEF(DateFormat)
+ LOG4CXX_PTR_DEF(DateFormat);
} // namespace helpers
Modified: logging/log4cxx/trunk/src/main/include/log4cxx/helpers/inetaddress.h
URL:
http://svn.apache.org/viewvc/logging/log4cxx/trunk/src/main/include/log4cxx/helpers/inetaddress.h?rev=631088&r1=631087&r2=631088&view=diff
==============================================================================
--- logging/log4cxx/trunk/src/main/include/log4cxx/helpers/inetaddress.h
(original)
+++ logging/log4cxx/trunk/src/main/include/log4cxx/helpers/inetaddress.h Mon
Feb 25 21:52:35 2008
@@ -45,8 +45,8 @@
class InetAddress;
- LOG4CXX_PTR_DEF(InetAddress)
- LOG4CXX_LIST_DEF(InetAddressList, InetAddressPtr)
+ LOG4CXX_PTR_DEF(InetAddress);
+ LOG4CXX_LIST_DEF(InetAddressList, InetAddressPtr);
class LOG4CXX_EXPORT InetAddress : public ObjectImpl
{
Modified:
logging/log4cxx/trunk/src/main/include/log4cxx/helpers/objectoutputstream.h
URL:
http://svn.apache.org/viewvc/logging/log4cxx/trunk/src/main/include/log4cxx/helpers/objectoutputstream.h?rev=631088&r1=631087&r2=631088&view=diff
==============================================================================
--- logging/log4cxx/trunk/src/main/include/log4cxx/helpers/objectoutputstream.h
(original)
+++ logging/log4cxx/trunk/src/main/include/log4cxx/helpers/objectoutputstream.h
Mon Feb 25 21:52:35 2008
@@ -85,7 +85,7 @@
ClassDescriptionMap* classDescriptions;
};
- LOG4CXX_PTR_DEF(ObjectOutputStream)
+ LOG4CXX_PTR_DEF(ObjectOutputStream);
} // namespace helpers
Modified: logging/log4cxx/trunk/src/main/include/log4cxx/helpers/outputstream.h
URL:
http://svn.apache.org/viewvc/logging/log4cxx/trunk/src/main/include/log4cxx/helpers/outputstream.h?rev=631088&r1=631087&r2=631088&view=diff
==============================================================================
--- logging/log4cxx/trunk/src/main/include/log4cxx/helpers/outputstream.h
(original)
+++ logging/log4cxx/trunk/src/main/include/log4cxx/helpers/outputstream.h Mon
Feb 25 21:52:35 2008
@@ -51,7 +51,7 @@
OutputStream& operator=(const OutputStream&);
};
- LOG4CXX_PTR_DEF(OutputStream)
+ LOG4CXX_PTR_DEF(OutputStream);
} // namespace helpers
} //namespace log4cxx
Modified:
logging/log4cxx/trunk/src/main/include/log4cxx/helpers/outputstreamwriter.h
URL:
http://svn.apache.org/viewvc/logging/log4cxx/trunk/src/main/include/log4cxx/helpers/outputstreamwriter.h?rev=631088&r1=631087&r2=631088&view=diff
==============================================================================
--- logging/log4cxx/trunk/src/main/include/log4cxx/helpers/outputstreamwriter.h
(original)
+++ logging/log4cxx/trunk/src/main/include/log4cxx/helpers/outputstreamwriter.h
Mon Feb 25 21:52:35 2008
@@ -57,7 +57,7 @@
OutputStreamWriter& operator=(const OutputStreamWriter&);
};
- LOG4CXX_PTR_DEF(OutputStreamWriter)
+ LOG4CXX_PTR_DEF(OutputStreamWriter);
} // namespace helpers
} //namespace log4cxx
Modified:
logging/log4cxx/trunk/src/main/include/log4cxx/helpers/resourcebundle.h
URL:
http://svn.apache.org/viewvc/logging/log4cxx/trunk/src/main/include/log4cxx/helpers/resourcebundle.h?rev=631088&r1=631087&r2=631088&view=diff
==============================================================================
--- logging/log4cxx/trunk/src/main/include/log4cxx/helpers/resourcebundle.h
(original)
+++ logging/log4cxx/trunk/src/main/include/log4cxx/helpers/resourcebundle.h Mon
Feb 25 21:52:35 2008
@@ -28,7 +28,7 @@
class Locale;
class ResourceBundle;
- LOG4CXX_PTR_DEF(ResourceBundle)
+ LOG4CXX_PTR_DEF(ResourceBundle);
/**
Resource bundles contain locale-specific objects
Modified:
logging/log4cxx/trunk/src/main/include/log4cxx/helpers/simpledateformat.h
URL:
http://svn.apache.org/viewvc/logging/log4cxx/trunk/src/main/include/log4cxx/helpers/simpledateformat.h?rev=631088&r1=631087&r2=631088&view=diff
==============================================================================
--- logging/log4cxx/trunk/src/main/include/log4cxx/helpers/simpledateformat.h
(original)
+++ logging/log4cxx/trunk/src/main/include/log4cxx/helpers/simpledateformat.h
Mon Feb 25 21:52:35 2008
@@ -75,7 +75,7 @@
/**
* List of tokens.
*/
- LOG4CXX_LIST_DEF(PatternTokenList,
log4cxx::helpers::SimpleDateFormatImpl::PatternToken*)
+ LOG4CXX_LIST_DEF(PatternTokenList,
log4cxx::helpers::SimpleDateFormatImpl::PatternToken*);
PatternTokenList pattern;
Modified: logging/log4cxx/trunk/src/main/include/log4cxx/helpers/socket.h
URL:
http://svn.apache.org/viewvc/logging/log4cxx/trunk/src/main/include/log4cxx/helpers/socket.h?rev=631088&r1=631087&r2=631088&view=diff
==============================================================================
--- logging/log4cxx/trunk/src/main/include/log4cxx/helpers/socket.h (original)
+++ logging/log4cxx/trunk/src/main/include/log4cxx/helpers/socket.h Mon Feb 25
21:52:35 2008
@@ -107,7 +107,7 @@
SocketImplPtr socketImpl;
};
- LOG4CXX_PTR_DEF(Socket)
+ LOG4CXX_PTR_DEF(Socket);
} // namespace helpers
} // namespace log4cxx
Modified: logging/log4cxx/trunk/src/main/include/log4cxx/helpers/socketimpl.h
URL:
http://svn.apache.org/viewvc/logging/log4cxx/trunk/src/main/include/log4cxx/helpers/socketimpl.h?rev=631088&r1=631087&r2=631088&view=diff
==============================================================================
--- logging/log4cxx/trunk/src/main/include/log4cxx/helpers/socketimpl.h
(original)
+++ logging/log4cxx/trunk/src/main/include/log4cxx/helpers/socketimpl.h Mon Feb
25 21:52:35 2008
@@ -165,7 +165,7 @@
class SocketImpl;
- LOG4CXX_PTR_DEF(SocketImpl)
+ LOG4CXX_PTR_DEF(SocketImpl);
/** @brief Default Socket Implementation.
Modified:
logging/log4cxx/trunk/src/main/include/log4cxx/helpers/socketoutputstream.h
URL:
http://svn.apache.org/viewvc/logging/log4cxx/trunk/src/main/include/log4cxx/helpers/socketoutputstream.h?rev=631088&r1=631087&r2=631088&view=diff
==============================================================================
--- logging/log4cxx/trunk/src/main/include/log4cxx/helpers/socketoutputstream.h
(original)
+++ logging/log4cxx/trunk/src/main/include/log4cxx/helpers/socketoutputstream.h
Mon Feb 25 21:52:35 2008
@@ -50,7 +50,7 @@
virtual void write(ByteBuffer& buf, Pool& p);
protected:
- LOG4CXX_LIST_DEF(ByteList, unsigned char)
+ LOG4CXX_LIST_DEF(ByteList, unsigned char);
ByteList array;
SocketPtr socket;
@@ -62,7 +62,7 @@
};
- LOG4CXX_PTR_DEF(SocketOutputStream)
+ LOG4CXX_PTR_DEF(SocketOutputStream);
} // namespace helpers
} // namespace log4cxx
Modified: logging/log4cxx/trunk/src/main/include/log4cxx/helpers/timezone.h
URL:
http://svn.apache.org/viewvc/logging/log4cxx/trunk/src/main/include/log4cxx/helpers/timezone.h?rev=631088&r1=631087&r2=631088&view=diff
==============================================================================
--- logging/log4cxx/trunk/src/main/include/log4cxx/helpers/timezone.h (original)
+++ logging/log4cxx/trunk/src/main/include/log4cxx/helpers/timezone.h Mon Feb
25 21:52:35 2008
@@ -29,7 +29,7 @@
namespace helpers
{
class TimeZone;
- LOG4CXX_PTR_DEF(TimeZone)
+ LOG4CXX_PTR_DEF(TimeZone);
class LOG4CXX_EXPORT TimeZone : public helpers::ObjectImpl
{
Modified: logging/log4cxx/trunk/src/main/include/log4cxx/layout.h
URL:
http://svn.apache.org/viewvc/logging/log4cxx/trunk/src/main/include/log4cxx/layout.h?rev=631088&r1=631087&r2=631088&view=diff
==============================================================================
--- logging/log4cxx/trunk/src/main/include/log4cxx/layout.h (original)
+++ logging/log4cxx/trunk/src/main/include/log4cxx/layout.h Mon Feb 25 21:52:35
2008
@@ -87,7 +87,7 @@
*/
virtual bool ignoresThrowable() const = 0;
};
- LOG4CXX_PTR_DEF(Layout)
+ LOG4CXX_PTR_DEF(Layout);
}
#if defined(_MSC_VER)
Modified: logging/log4cxx/trunk/src/main/include/log4cxx/level.h
URL:
http://svn.apache.org/viewvc/logging/log4cxx/trunk/src/main/include/log4cxx/level.h?rev=631088&r1=631087&r2=631088&view=diff
==============================================================================
--- logging/log4cxx/trunk/src/main/include/log4cxx/level.h (original)
+++ logging/log4cxx/trunk/src/main/include/log4cxx/level.h Mon Feb 25 21:52:35
2008
@@ -29,7 +29,7 @@
{
class Level;
/** smart pointer to a Level instance */
- LOG4CXX_PTR_DEF(Level)
+ LOG4CXX_PTR_DEF(Level);
/**
Defines the minimum set of levels recognized by the system, that is
Modified: logging/log4cxx/trunk/src/main/include/log4cxx/log4cxx.h.in
URL:
http://svn.apache.org/viewvc/logging/log4cxx/trunk/src/main/include/log4cxx/log4cxx.h.in?rev=631088&r1=631087&r2=631088&view=diff
==============================================================================
--- logging/log4cxx/trunk/src/main/include/log4cxx/log4cxx.h.in (original)
+++ logging/log4cxx/trunk/src/main/include/log4cxx/log4cxx.h.in Mon Feb 25
21:52:35 2008
@@ -44,8 +44,8 @@
#define LOG4CXX_EXPORT
-#define LOG4CXX_PTR_DEF(T) typedef log4cxx::helpers::ObjectPtrT<T> T##Ptr;
-#define LOG4CXX_LIST_DEF(N, T) typedef std::vector<T> N;
+#define LOG4CXX_PTR_DEF(T) typedef log4cxx::helpers::ObjectPtrT<T> T##Ptr
+#define LOG4CXX_LIST_DEF(N, T) typedef std::vector<T> N
#endif
Modified: logging/log4cxx/trunk/src/main/include/log4cxx/log4cxx.hw
URL:
http://svn.apache.org/viewvc/logging/log4cxx/trunk/src/main/include/log4cxx/log4cxx.hw?rev=631088&r1=631087&r2=631088&view=diff
==============================================================================
--- logging/log4cxx/trunk/src/main/include/log4cxx/log4cxx.hw (original)
+++ logging/log4cxx/trunk/src/main/include/log4cxx/log4cxx.hw Mon Feb 25
21:52:35 2008
@@ -70,28 +70,28 @@
#if defined(_MSC_VER) && !defined(LOG4CXX_STATIC) && defined(LOG4CXX)
#define LOG4CXX_PTR_DEF(T) \
template class LOG4CXX_EXPORT log4cxx::helpers::ObjectPtrT<T>; \
-typedef log4cxx::helpers::ObjectPtrT<T> T##Ptr;
+typedef log4cxx::helpers::ObjectPtrT<T> T##Ptr
#define LOG4CXX_LIST_DEF(N, T) \
template class LOG4CXX_EXPORT std::allocator<T>; \
template class LOG4CXX_EXPORT std::vector<T>; \
-typedef std::vector<T> N;
+typedef std::vector<T> N
//
// pointer and list definition macros when linking with DLL using VC
//
#elif defined(_MSC_VER) && !defined(LOG4CXX_STATIC)
#define LOG4CXX_PTR_DEF(T) \
extern template class LOG4CXX_EXPORT log4cxx::helpers::ObjectPtrT<T>; \
-typedef log4cxx::helpers::ObjectPtrT<T> T##Ptr;
+typedef log4cxx::helpers::ObjectPtrT<T> T##Ptr
#define LOG4CXX_LIST_DEF(N, T) \
extern template class LOG4CXX_EXPORT std::allocator<T>; \
extern template class LOG4CXX_EXPORT std::vector<T>; \
-typedef std::vector<T> N;
+typedef std::vector<T> N
//
// pointer and list definition macros for all other cases
//
#else
-#define LOG4CXX_PTR_DEF(T) typedef log4cxx::helpers::ObjectPtrT<T> T##Ptr;
-#define LOG4CXX_LIST_DEF(N, T) typedef std::vector<T> N;
+#define LOG4CXX_PTR_DEF(T) typedef log4cxx::helpers::ObjectPtrT<T> T##Ptr
+#define LOG4CXX_LIST_DEF(N, T) typedef std::vector<T> N
#endif
Modified: logging/log4cxx/trunk/src/main/include/log4cxx/logger.h
URL:
http://svn.apache.org/viewvc/logging/log4cxx/trunk/src/main/include/log4cxx/logger.h?rev=631088&r1=631087&r2=631088&view=diff
==============================================================================
--- logging/log4cxx/trunk/src/main/include/log4cxx/logger.h (original)
+++ logging/log4cxx/trunk/src/main/include/log4cxx/logger.h Mon Feb 25 21:52:35
2008
@@ -41,15 +41,15 @@
namespace spi {
class LoggerRepository;
- LOG4CXX_PTR_DEF(LoggerRepository)
+ LOG4CXX_PTR_DEF(LoggerRepository);
class LoggerFactory;
- LOG4CXX_PTR_DEF(LoggerFactory)
+ LOG4CXX_PTR_DEF(LoggerFactory);
}
class Logger;
/** smart pointer to a Logger class */
- LOG4CXX_PTR_DEF(Logger)
- LOG4CXX_LIST_DEF(LoggerList, LoggerPtr)
+ LOG4CXX_PTR_DEF(Logger);
+ LOG4CXX_LIST_DEF(LoggerList, LoggerPtr);
/**
@@ -1717,7 +1717,7 @@
log4cxx::helpers::Mutex mutex;
friend class log4cxx::helpers::synchronized;
};
- LOG4CXX_LIST_DEF(LoggerList, LoggerPtr)
+ LOG4CXX_LIST_DEF(LoggerList, LoggerPtr);
}
Modified: logging/log4cxx/trunk/src/main/include/log4cxx/net/sockethubappender.h
URL:
http://svn.apache.org/viewvc/logging/log4cxx/trunk/src/main/include/log4cxx/net/sockethubappender.h?rev=631088&r1=631087&r2=631088&view=diff
==============================================================================
--- logging/log4cxx/trunk/src/main/include/log4cxx/net/sockethubappender.h
(original)
+++ logging/log4cxx/trunk/src/main/include/log4cxx/net/sockethubappender.h Mon
Feb 25 21:52:35 2008
@@ -112,7 +112,7 @@
static int DEFAULT_PORT;
int port;
- LOG4CXX_LIST_DEF(ObjectOutputStreamList,
log4cxx::helpers::ObjectOutputStreamPtr)
+ LOG4CXX_LIST_DEF(ObjectOutputStreamList,
log4cxx::helpers::ObjectOutputStreamPtr);
ObjectOutputStreamList streams;
bool locationInfo;
Modified: logging/log4cxx/trunk/src/main/include/log4cxx/net/telnetappender.h
URL:
http://svn.apache.org/viewvc/logging/log4cxx/trunk/src/main/include/log4cxx/net/telnetappender.h?rev=631088&r1=631087&r2=631088&view=diff
==============================================================================
--- logging/log4cxx/trunk/src/main/include/log4cxx/net/telnetappender.h
(original)
+++ logging/log4cxx/trunk/src/main/include/log4cxx/net/telnetappender.h Mon Feb
25 21:52:35 2008
@@ -132,7 +132,7 @@
TelnetAppender& operator=(const TelnetAppender&);
typedef log4cxx::helpers::SocketPtr Connection;
- LOG4CXX_LIST_DEF(ConnectionList, Connection)
+ LOG4CXX_LIST_DEF(ConnectionList, Connection);
void write(log4cxx::helpers::ByteBuffer&);
void writeStatus(const log4cxx::helpers::SocketPtr&
socket, const LogString& msg, log4cxx::helpers::Pool& p);
Modified:
logging/log4cxx/trunk/src/main/include/log4cxx/pattern/nameabbreviator.h
URL:
http://svn.apache.org/viewvc/logging/log4cxx/trunk/src/main/include/log4cxx/pattern/nameabbreviator.h?rev=631088&r1=631087&r2=631088&view=diff
==============================================================================
--- logging/log4cxx/trunk/src/main/include/log4cxx/pattern/nameabbreviator.h
(original)
+++ logging/log4cxx/trunk/src/main/include/log4cxx/pattern/nameabbreviator.h
Mon Feb 25 21:52:35 2008
@@ -26,7 +26,7 @@
namespace pattern {
class NameAbbreviator;
- LOG4CXX_PTR_DEF(NameAbbreviator)
+ LOG4CXX_PTR_DEF(NameAbbreviator);
/**
* NameAbbreviator generates abbreviated logger and class names.
Modified:
logging/log4cxx/trunk/src/main/include/log4cxx/pattern/patternconverter.h
URL:
http://svn.apache.org/viewvc/logging/log4cxx/trunk/src/main/include/log4cxx/pattern/patternconverter.h?rev=631088&r1=631087&r2=631088&view=diff
==============================================================================
--- logging/log4cxx/trunk/src/main/include/log4cxx/pattern/patternconverter.h
(original)
+++ logging/log4cxx/trunk/src/main/include/log4cxx/pattern/patternconverter.h
Mon Feb 25 21:52:35 2008
@@ -115,7 +115,7 @@
};
-LOG4CXX_PTR_DEF(PatternConverter)
+LOG4CXX_PTR_DEF(PatternConverter);
}
}
Modified: logging/log4cxx/trunk/src/main/include/log4cxx/patternlayout.h
URL:
http://svn.apache.org/viewvc/logging/log4cxx/trunk/src/main/include/log4cxx/patternlayout.h?rev=631088&r1=631087&r2=631088&view=diff
==============================================================================
--- logging/log4cxx/trunk/src/main/include/log4cxx/patternlayout.h (original)
+++ logging/log4cxx/trunk/src/main/include/log4cxx/patternlayout.h Mon Feb 25
21:52:35 2008
@@ -334,13 +334,13 @@
/**
* Pattern converters.
*/
- LOG4CXX_LIST_DEF(LoggingEventPatternConverterList,
log4cxx::pattern::LoggingEventPatternConverterPtr)
+ LOG4CXX_LIST_DEF(LoggingEventPatternConverterList,
log4cxx::pattern::LoggingEventPatternConverterPtr);
LoggingEventPatternConverterList patternConverters;
/**
* Field widths and alignment corresponding to pattern
converters.
*/
- LOG4CXX_LIST_DEF(FormattingInfoList,
log4cxx::pattern::FormattingInfoPtr)
+ LOG4CXX_LIST_DEF(FormattingInfoList,
log4cxx::pattern::FormattingInfoPtr);
FormattingInfoList patternFields;
@@ -398,7 +398,7 @@
protected:
virtual log4cxx::pattern::PatternMap getFormatSpecifiers();
};
- LOG4CXX_PTR_DEF(PatternLayout)
+ LOG4CXX_PTR_DEF(PatternLayout);
} // namespace log4cxx
#if defined(_MSC_VER)
Modified: logging/log4cxx/trunk/src/main/include/log4cxx/rolling/action.h
URL:
http://svn.apache.org/viewvc/logging/log4cxx/trunk/src/main/include/log4cxx/rolling/action.h?rev=631088&r1=631087&r2=631088&view=diff
==============================================================================
--- logging/log4cxx/trunk/src/main/include/log4cxx/rolling/action.h (original)
+++ logging/log4cxx/trunk/src/main/include/log4cxx/rolling/action.h Mon Feb 25
21:52:35 2008
@@ -79,7 +79,7 @@
};
- LOG4CXX_PTR_DEF(Action)
+ LOG4CXX_PTR_DEF(Action);
}
}
Modified:
logging/log4cxx/trunk/src/main/include/log4cxx/rolling/rollingfileappender.h
URL:
http://svn.apache.org/viewvc/logging/log4cxx/trunk/src/main/include/log4cxx/rolling/rollingfileappender.h?rev=631088&r1=631087&r2=631088&view=diff
==============================================================================
---
logging/log4cxx/trunk/src/main/include/log4cxx/rolling/rollingfileappender.h
(original)
+++
logging/log4cxx/trunk/src/main/include/log4cxx/rolling/rollingfileappender.h
Mon Feb 25 21:52:35 2008
@@ -96,7 +96,7 @@
};
- LOG4CXX_PTR_DEF(RollingFileAppender)
+ LOG4CXX_PTR_DEF(RollingFileAppender);
}
}
Modified:
logging/log4cxx/trunk/src/main/include/log4cxx/rolling/rollingfileappenderskeleton.h
URL:
http://svn.apache.org/viewvc/logging/log4cxx/trunk/src/main/include/log4cxx/rolling/rollingfileappenderskeleton.h?rev=631088&r1=631087&r2=631088&view=diff
==============================================================================
---
logging/log4cxx/trunk/src/main/include/log4cxx/rolling/rollingfileappenderskeleton.h
(original)
+++
logging/log4cxx/trunk/src/main/include/log4cxx/rolling/rollingfileappenderskeleton.h
Mon Feb 25 21:52:35 2008
@@ -143,7 +143,7 @@
};
- LOG4CXX_PTR_DEF(RollingFileAppenderSkeleton)
+ LOG4CXX_PTR_DEF(RollingFileAppenderSkeleton);
}
}
Modified: logging/log4cxx/trunk/src/main/include/log4cxx/rolling/rollingpolicy.h
URL:
http://svn.apache.org/viewvc/logging/log4cxx/trunk/src/main/include/log4cxx/rolling/rollingpolicy.h?rev=631088&r1=631087&r2=631088&view=diff
==============================================================================
--- logging/log4cxx/trunk/src/main/include/log4cxx/rolling/rollingpolicy.h
(original)
+++ logging/log4cxx/trunk/src/main/include/log4cxx/rolling/rollingpolicy.h Mon
Feb 25 21:52:35 2008
@@ -74,7 +74,7 @@
log4cxx::helpers::Pool& p) = 0;
};
- LOG4CXX_PTR_DEF(RollingPolicy)
+ LOG4CXX_PTR_DEF(RollingPolicy);
}
}
Modified:
logging/log4cxx/trunk/src/main/include/log4cxx/rolling/rollingpolicybase.h
URL:
http://svn.apache.org/viewvc/logging/log4cxx/trunk/src/main/include/log4cxx/rolling/rollingpolicybase.h?rev=631088&r1=631087&r2=631088&view=diff
==============================================================================
--- logging/log4cxx/trunk/src/main/include/log4cxx/rolling/rollingpolicybase.h
(original)
+++ logging/log4cxx/trunk/src/main/include/log4cxx/rolling/rollingpolicybase.h
Mon Feb 25 21:52:35 2008
@@ -57,13 +57,13 @@
/**
* File name pattern converters.
*/
- LOG4CXX_LIST_DEF(PatternConverterList,
log4cxx::pattern::PatternConverterPtr)
+ LOG4CXX_LIST_DEF(PatternConverterList,
log4cxx::pattern::PatternConverterPtr);
PatternConverterList patternConverters;
/**
* File name field specifiers.
*/
- LOG4CXX_LIST_DEF(FormattingInfoList,
log4cxx::pattern::FormattingInfoPtr)
+ LOG4CXX_LIST_DEF(FormattingInfoList,
log4cxx::pattern::FormattingInfoPtr);
FormattingInfoList patternFields;
/**
Modified:
logging/log4cxx/trunk/src/main/include/log4cxx/rolling/triggeringpolicy.h
URL:
http://svn.apache.org/viewvc/logging/log4cxx/trunk/src/main/include/log4cxx/rolling/triggeringpolicy.h?rev=631088&r1=631087&r2=631088&view=diff
==============================================================================
--- logging/log4cxx/trunk/src/main/include/log4cxx/rolling/triggeringpolicy.h
(original)
+++ logging/log4cxx/trunk/src/main/include/log4cxx/rolling/triggeringpolicy.h
Mon Feb 25 21:52:35 2008
@@ -71,7 +71,7 @@
};
- LOG4CXX_PTR_DEF(TriggeringPolicy)
+ LOG4CXX_PTR_DEF(TriggeringPolicy);
}
Modified: logging/log4cxx/trunk/src/main/include/log4cxx/rollingfileappender.h
URL:
http://svn.apache.org/viewvc/logging/log4cxx/trunk/src/main/include/log4cxx/rollingfileappender.h?rev=631088&r1=631087&r2=631088&view=diff
==============================================================================
--- logging/log4cxx/trunk/src/main/include/log4cxx/rollingfileappender.h
(original)
+++ logging/log4cxx/trunk/src/main/include/log4cxx/rollingfileappender.h Mon
Feb 25 21:52:35 2008
@@ -104,7 +104,7 @@
}; // class RollingFileAppender
- LOG4CXX_PTR_DEF(RollingFileAppender)
+ LOG4CXX_PTR_DEF(RollingFileAppender);
} // namespace log4cxx
Modified:
logging/log4cxx/trunk/src/main/include/log4cxx/spi/appenderattachable.h
URL:
http://svn.apache.org/viewvc/logging/log4cxx/trunk/src/main/include/log4cxx/spi/appenderattachable.h?rev=631088&r1=631087&r2=631088&view=diff
==============================================================================
--- logging/log4cxx/trunk/src/main/include/log4cxx/spi/appenderattachable.h
(original)
+++ logging/log4cxx/trunk/src/main/include/log4cxx/spi/appenderattachable.h Mon
Feb 25 21:52:35 2008
@@ -85,7 +85,7 @@
};
- LOG4CXX_PTR_DEF(AppenderAttachable)
+ LOG4CXX_PTR_DEF(AppenderAttachable);
}
}
Modified: logging/log4cxx/trunk/src/main/include/log4cxx/spi/configurator.h
URL:
http://svn.apache.org/viewvc/logging/log4cxx/trunk/src/main/include/log4cxx/spi/configurator.h?rev=631088&r1=631087&r2=631088&view=diff
==============================================================================
--- logging/log4cxx/trunk/src/main/include/log4cxx/spi/configurator.h (original)
+++ logging/log4cxx/trunk/src/main/include/log4cxx/spi/configurator.h Mon Feb
25 21:52:35 2008
@@ -54,7 +54,7 @@
bool initialized;
};
- LOG4CXX_PTR_DEF(Configurator)
+ LOG4CXX_PTR_DEF(Configurator);
}
}
Modified: logging/log4cxx/trunk/src/main/include/log4cxx/spi/errorhandler.h
URL:
http://svn.apache.org/viewvc/logging/log4cxx/trunk/src/main/include/log4cxx/spi/errorhandler.h?rev=631088&r1=631087&r2=631088&view=diff
==============================================================================
--- logging/log4cxx/trunk/src/main/include/log4cxx/spi/errorhandler.h (original)
+++ logging/log4cxx/trunk/src/main/include/log4cxx/spi/errorhandler.h Mon Feb
25 21:52:35 2008
@@ -116,7 +116,7 @@
virtual void setBackupAppender(const AppenderPtr&
appender) = 0;
};
- LOG4CXX_PTR_DEF(ErrorHandler)
+ LOG4CXX_PTR_DEF(ErrorHandler);
} //namespace spi
} //namespace log4cxx
Modified:
logging/log4cxx/trunk/src/main/include/log4cxx/spi/hierarchyeventlistener.h
URL:
http://svn.apache.org/viewvc/logging/log4cxx/trunk/src/main/include/log4cxx/spi/hierarchyeventlistener.h?rev=631088&r1=631087&r2=631088&view=diff
==============================================================================
--- logging/log4cxx/trunk/src/main/include/log4cxx/spi/hierarchyeventlistener.h
(original)
+++ logging/log4cxx/trunk/src/main/include/log4cxx/spi/hierarchyeventlistener.h
Mon Feb 25 21:52:35 2008
@@ -52,8 +52,8 @@
const log4cxx::helpers::ObjectPtrT<Logger>& logger,
const log4cxx::helpers::ObjectPtrT<Appender>& appender) =
0;
};
- LOG4CXX_PTR_DEF(HierarchyEventListener)
- LOG4CXX_LIST_DEF(HierarchyEventListenerList,
HierarchyEventListenerPtr)
+ LOG4CXX_PTR_DEF(HierarchyEventListener);
+ LOG4CXX_LIST_DEF(HierarchyEventListenerList,
HierarchyEventListenerPtr);
} // namespace spi
} // namespace log4cxx
Modified: logging/log4cxx/trunk/src/main/include/log4cxx/spi/loggingevent.h
URL:
http://svn.apache.org/viewvc/logging/log4cxx/trunk/src/main/include/log4cxx/spi/loggingevent.h?rev=631088&r1=631087&r2=631088&view=diff
==============================================================================
--- logging/log4cxx/trunk/src/main/include/log4cxx/spi/loggingevent.h (original)
+++ logging/log4cxx/trunk/src/main/include/log4cxx/spi/loggingevent.h Mon Feb
25 21:52:35 2008
@@ -152,7 +152,7 @@
*/
bool getMDC(const LogString& key, LogString& dest)
const;
- LOG4CXX_LIST_DEF(KeySet, LogString)
+ LOG4CXX_LIST_DEF(KeySet, LogString);
/**
* Returns the set of of the key values in the MDC for
the event.
* The returned set is unmodifiable by the caller.
@@ -250,8 +250,8 @@
};
- LOG4CXX_PTR_DEF(LoggingEvent)
- LOG4CXX_LIST_DEF(LoggingEventList, LoggingEventPtr)
+ LOG4CXX_PTR_DEF(LoggingEvent);
+ LOG4CXX_LIST_DEF(LoggingEventList, LoggingEventPtr);
}
}