Fix documentation build under maverick (doxygen 1.7.1)
[senf.git] / senf / Utils / pool_alloc_mixin.cti
index bb002d0..a23ed61 100644 (file)
 #include <senf/Utils/senfassert.hh>
 
 #define prefix_ inline
-///////////////////////////////cti.p///////////////////////////////////////
+//-/////////////////////////////////////////////////////////////////////////////////////////////////
 
 template <class Self>
 prefix_ void * senf::pool_alloc_mixin<Self>::operator new(size_t size)
 {
     // When deriving from Self you may not change the class's size without
     // inheriting from pool_alloc_mixin again. See pool_alloc_mixin documentation.
-    SENF_ASSERT( size <= sizeof(Self) &&
+    SENF_ASSERT( size <= sizeof(Self),
                  "senf::pool_alloc_mixin::operator new(): "
                  "Bad object size. Missing pool_alloc_mixin base in derived class?" );
 #ifdef SENF_DEBUG
@@ -72,7 +72,7 @@ prefix_ unsigned long senf::pool_alloc_mixin<Self>::allocCounter(long delta)
 
 #endif
 
-///////////////////////////////cti.e///////////////////////////////////////
+//-/////////////////////////////////////////////////////////////////////////////////////////////////
 #undef prefix_
 
 \f