Use is_same from Boost.TypeTraits.

boost::core::is_same is deprecated, so use the one from Boost.TypeTraits
instead.
This commit is contained in:
Andrey Semashev
2022-12-23 01:28:59 +03:00
committed by Andrzej Krzemienski
parent def2db7c45
commit 9c43ae3612
3 changed files with 29 additions and 29 deletions

View File

@ -16,14 +16,14 @@
#endif
#include "boost/core/ignore_unused.hpp"
#include "boost/core/is_same.hpp"
#include "boost/core/lightweight_test.hpp"
#include "boost/core/lightweight_test_trait.hpp"
#include "boost/type_traits/is_same.hpp"
using boost::optional;
using boost::make_optional;
using boost::core::is_same;
using boost::is_same;
template <typename Expected, typename Deduced>
void verify_type(Deduced)