Unit Tests: added BOOST_CHECK(true) to tests without any assertions to avoid warnings
[senf.git] / senf / Utils / type_traits.test.cc
index 0040416..1e1706b 100644 (file)
@@ -140,6 +140,8 @@ SENF_AUTO_UNIT_TEST(typeTraits)
 
     BOOST_STATIC_ASSERT((   senf::is_pair< std::pair<int,void*> >::value ));
     BOOST_STATIC_ASSERT(( ! senf::is_pair< void () >::value ));
+    
+    BOOST_CHECK( true );
 }
 
 ///////////////////////////////cc.e////////////////////////////////////////