Merge pull request #34 from ecatmur/libcxx-16

Fix libc++16 failures
This commit is contained in:
Peter Dimov
2023-06-29 11:22:13 +03:00
committed by GitHub

View File

@@ -35,7 +35,11 @@ int main()
#endif
#if defined(_LIBCPP_VERSION) && _LIBCPP_VERSION >= 160000
// std::char_traits<Ch> is deprecated for non-char types
#else
BOOST_TEST_TRAIT_FALSE(( hash_is_avalanching< boost::hash<std::basic_string<my_char> > > ));
#endif
return boost::report_errors();
}