We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent aaf34b9 commit d81ad52Copy full SHA for d81ad52
include/lsst/cpputils/tests.h
@@ -47,7 +47,7 @@ constexpr bool HAS_STREAM_OUTPUT<
47
// Conditional function templates reporting object values if possible
48
template <typename T, class Hash>
49
std::enable_if_t<HAS_STREAM_OUTPUT<T>> printIfHashEqual(T obj1, T obj2, Hash hash) {
50
- BOOST_TEST_REQUIRE((obj1 == obj2));
+ BOOST_TEST_REQUIRE(obj1 == obj2);
51
BOOST_TEST(hash(obj1) == hash(obj2),
52
obj1 << " == " << obj2 << ", but " << hash(obj1) << " != " << hash(obj2));
53
}
0 commit comments