fixes for g++ 4.5 (some members returned "the constructor, not the type")
[senf.git] / senf / Utils / TypeInfo.test.cc
index f77c530..6384207 100644 (file)
 // Custom includes
 #include "TypeInfo.hh"
 
-#include "../Utils/auto_unit_test.hh"
+#include <senf/Utils/auto_unit_test.hh>
 #include <boost/test/test_tools.hpp>
 
 #define prefix_
-///////////////////////////////cc.p////////////////////////////////////////
+//-/////////////////////////////////////////////////////////////////////////////////////////////////
 
 namespace test {
 
@@ -48,7 +48,7 @@ namespace test {
     enum Blub { A, B, C };
 }
 
-BOOST_AUTO_UNIT_TEST(prettyName)
+SENF_AUTO_UNIT_TEST(prettyName)
 {
     typedef test::Foo< test::Foo<test::Blub, 1>, 10> TestType;
     TestType ob;
@@ -58,7 +58,7 @@ BOOST_AUTO_UNIT_TEST(prettyName)
     BOOST_CHECK_EQUAL( senf::prettyName(typeid(baseOb)), "test::Foo<test::Foo<test::Blub, 1>, 10>" );
 }
 
-///////////////////////////////cc.e////////////////////////////////////////
+//-/////////////////////////////////////////////////////////////////////////////////////////////////
 #undef prefix_
 
 \f