Ticket #6712: boost_test_warnings.patch
File boost_test_warnings.patch, 2.3 KB (added by , 11 years ago) |
---|
-
boost/test/impl/framework.ipp
186 186 187 187 return false; 188 188 } 189 virtual void test_suite_finish( test_suite const& ts)189 virtual void test_suite_finish( test_suite const& ) 190 190 { 191 191 --m_depth; 192 192 } -
boost/test/impl/test_tree.ipp
315 315 316 316 //____________________________________________________________________________// 317 317 318 auto_test_unit_registrar::auto_test_unit_registrar( test_unit_generator const& tc_gen, decorator::collector* decorators)318 auto_test_unit_registrar::auto_test_unit_registrar( test_unit_generator const& tc_gen, decorator::collector* ) 319 319 { 320 320 curr_ts_store().back()->add( tc_gen ); 321 321 -
boost/test/impl/execution_monitor.ipp
1352 1352 #elif defined(__GLIBC__) && defined(__USE_GNU) && !defined(BOOST_CLANG) && !defined(BOOST_NO_FENV_H) 1353 1353 ::feclearexcept(BOOST_FPE_ALL); 1354 1354 int res = ::feenableexcept( mask ); 1355 return res == -1 ? BOOST_FPE_INV : (unsigned)res;1355 return res == -1 ? (unsigned)BOOST_FPE_INV : (unsigned)res; 1356 1356 #else 1357 1357 /* Not Implemented */ 1358 1358 return 0; … … 1387 1387 #elif defined(__GLIBC__) && defined(__USE_GNU) && !defined(BOOST_CLANG) && !defined(BOOST_NO_FENV_H) 1388 1388 ::feclearexcept(BOOST_FPE_ALL); 1389 1389 int res = ::fedisableexcept( mask ); 1390 return res == -1 ? BOOST_FPE_INV : (unsigned)res;1390 return res == -1 ? (unsigned)BOOST_FPE_INV : (unsigned)res; 1391 1391 #else 1392 1392 /* Not Implemented */ 1393 1393 return BOOST_FPE_INV; -
boost/test/impl/debug.ipp
944 944 } 945 945 946 946 _CrtSetDbgFlag ( flags ); 947 #else 948 unit_test::ut_detail::ignore_unused_variable_warning( report_file ); 947 949 #endif // BOOST_MS_CRT_BASED_DEBUG 948 950 } 949 951