Skip to content

Commit

Permalink
Fix some more
Browse files Browse the repository at this point in the history
  • Loading branch information
masterleinad committed Jan 22, 2024
1 parent c100c81 commit eddd1d4
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions test/tstDetailsDistributedTreeImpl.cpp
Expand Up @@ -193,10 +193,10 @@ inline void checkViewWasNotAllocated(View1 const &v1, View2 const &v2)
BOOST_TEST(v1.span() == v2.span());

BOOST_TEST((int)View1::rank == (int)View2::rank);
BOOST_TEST((std::is_same<typename View1::const_value_type,
typename View2::const_value_type>::value));
BOOST_TEST((std::is_same<typename View1::memory_space,
typename View2::memory_space>::value));
BOOST_TEST((std::is_same_v<typename View1::const_value_type,
typename View2::const_value_type>));
BOOST_TEST((std::is_same_v<typename View1::memory_space,
typename View2::memory_space>));

BOOST_TEST(v1.extent(0) == v2.extent(0));
BOOST_TEST(v1.extent(1) == v2.extent(1));
Expand All @@ -214,8 +214,8 @@ inline void checkNewViewWasAllocated(View1 const &v1, View2 const &v2)
BOOST_TEST(v1.data() != v2.data());

BOOST_TEST((int)View1::rank == (int)View2::rank);
BOOST_TEST((std::is_same<typename View1::const_value_type,
typename View2::const_value_type>::value));
BOOST_TEST((std::is_same_v<typename View1::const_value_type,
typename View2::const_value_type>));

BOOST_TEST(v1.extent(0) == v2.extent(0));
BOOST_TEST(v1.extent(1) == v2.extent(1));
Expand Down

0 comments on commit eddd1d4

Please sign in to comment.