Added missing return in tests

This commit is contained in:
Krystian Stasiowski
2019-10-29 17:33:16 -04:00
parent 7a0a720a42
commit c46e1c1459

View File

@ -5436,6 +5436,7 @@ testR(S s, typename S::size_type pos, typename S::size_type n1,
else
{
BOOST_TEST_THROWS((s.replace(pos, n1, str, n2)), std::out_of_range);
return true;
}
}