Fix documentation build under maverick (doxygen 1.7.1)
[senf.git] / senf / Utils / TypeIdValue.cci
index e11e44b..28c1e11 100644 (file)
@@ -30,7 +30,7 @@
 #include "senfassert.hh"
 
 #define prefix_ inline
-///////////////////////////////cci.p///////////////////////////////////////
+//-/////////////////////////////////////////////////////////////////////////////////////////////////
 
 prefix_ senf::TypeIdValue::TypeIdValue()
     : p_ (&typeid(void))
@@ -67,7 +67,8 @@ prefix_ std::string senf::TypeIdValue::prettyName()
 prefix_ std::type_info const & senf::TypeIdValue::id()
     const
 {
-    SENF_ASSERT(p_);
+    SENF_ASSERT(
+        p_, "Internal failure: Empty TypeIdValue should have p_ point to typeid(void) not 0");
     return *p_;
 }
 
@@ -82,7 +83,7 @@ prefix_ std::ostream & senf::operator<<(std::ostream & os, TypeIdValue const & v
     return os;
 }
 
-///////////////////////////////cci.e///////////////////////////////////////
+//-/////////////////////////////////////////////////////////////////////////////////////////////////
 #undef prefix_
 
 \f