Fix documentation build under maverick (doxygen 1.7.1)
[senf.git] / senf / Utils / TypeIdValue.test.cc
index 94c5c34..5f05484 100644 (file)
 
 // Custom includes
 #include "TypeIdValue.hh"
+#include "IgnoreValue.hh"
 
 #include <senf/Utils/auto_unit_test.hh>
 #include <boost/test/test_tools.hpp>
 
 #define prefix_
-///////////////////////////////cc.p////////////////////////////////////////
+//-/////////////////////////////////////////////////////////////////////////////////////////////////
 
 SENF_AUTO_UNIT_TEST(typeIdValue)
 {
     // We don't care for the ordering, just that the following compiles
-    (void) ( senf::typeIdValue<int>() < senf::typeIdValue<float>() );
+    senf::IGNORE( senf::typeIdValue<int>() < senf::typeIdValue<float>() );
     BOOST_CHECK ( senf::typeIdValue<int>() != senf::typeIdValue<float>() );
     BOOST_CHECK ( senf::typeIdValue<int>() == senf::typeIdValue<int>() );
 }
 
-///////////////////////////////cc.e////////////////////////////////////////
+//-/////////////////////////////////////////////////////////////////////////////////////////////////
 #undef prefix_
 
 \f