We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e04ccf9 commit dcd4e9bCopy full SHA for dcd4e9b
1 file changed
test/test_general.cpp
@@ -778,7 +778,7 @@ TEST_CASE( "Multiplication" ) {
778
CHECK(S("") * -1 == S(""));
779
CHECK(S("") * std::numeric_limits<int>::min() == S(""));
780
781
- CHECK_THROWS_AS(S("abc") * std::numeric_limits<size_t>::max(), std::bad_alloc);
+ CHECK_THROWS_AS((S("abc") * std::numeric_limits<size_t>::max()), std::bad_alloc);
782
}
783
784
TEST_CASE( "c_str" ) {
0 commit comments