Author: tschoening
Date: Fri Feb 21 09:00:21 2014
New Revision: 1570494
URL: http://svn.apache.org/r1570494
Log:
LOGCXX-394: Doxygen: warning: no uniquely matching class member found for
Modified:
incubator/log4cxx/trunk/src/main/include/log4cxx/level.h
Modified: incubator/log4cxx/trunk/src/main/include/log4cxx/level.h
URL:
http://svn.apache.org/viewvc/incubator/log4cxx/trunk/src/main/include/log4cxx/level.h?rev=1570494&r1=1570493&r2=1570494&view=diff
==============================================================================
--- incubator/log4cxx/trunk/src/main/include/log4cxx/level.h (original)
+++ incubator/log4cxx/trunk/src/main/include/log4cxx/level.h Fri Feb 21
09:00:21 2014
@@ -270,14 +270,15 @@ namespace log4cxx
Level& operator=(const Level&);
};
- /*
+ /**
* We need to double some logic from LOG4CXX_PTR_DEF or else we are
unable to override the
* comparison operator, which we need to properly fix LOGCXX-394.
*
* https://issues.apache.org/jira/browse/LOGCXX-394
*/
namespace helpers {
-
+
+ /** @class log4cxx::helpers::ObjectPtr */
template<> inline bool LevelPtr::operator==(const LevelPtr& rhs) const
{ return (*this)->equals(rhs); }
template<> inline bool LevelPtr::operator!=(const LevelPtr& rhs) const
@@ -290,7 +291,7 @@ namespace log4cxx
extern template class LOG4CXX_EXPORT
log4cxx::helpers::ObjectPtrT<Level>;
#pragma warning(pop)
#endif
-
+
}
}