Giant C++11 refactor removing:

BOOST_STATIC_ASSERT
BOOST_STATIC_CONST
boost::enable_if/disable_if
Changed many traits class usages from boost:: to std::.
This commit is contained in:
jzmaddock
2021-01-13 14:33:48 +00:00
parent 06e519c1c8
commit cb514e9249
75 changed files with 1424 additions and 1479 deletions

View File

@@ -26,7 +26,7 @@ int main()
test<cpp_dec_float_50>();
#endif
#ifdef TEST2
test<number<cpp_dec_float<100, boost::int64_t, std::allocator<char> > > >();
test<number<cpp_dec_float<100, std::int64_t, std::allocator<char> > > >();
#endif
return boost::report_errors();
}