From c46e1c1459edb4fb91a275af413ad5728585a48e Mon Sep 17 00:00:00 2001 From: Krystian Stasiowski Date: Tue, 29 Oct 2019 17:33:16 -0400 Subject: [PATCH] Added missing return in tests --- test/fixed_string.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/test/fixed_string.cpp b/test/fixed_string.cpp index 91eda84..d1b858d 100644 --- a/test/fixed_string.cpp +++ b/test/fixed_string.cpp @@ -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; } }