From f919ce532a0d41403cb05375aace5f9777b722d0 Mon Sep 17 00:00:00 2001 From: joaquintides Date: Wed, 26 Jul 2023 16:50:25 +0200 Subject: [PATCH] repositioned LCOV annotations --- test/cfoa/reentrancy_check_test.cpp | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/test/cfoa/reentrancy_check_test.cpp b/test/cfoa/reentrancy_check_test.cpp index b359b983..69ef5efc 100644 --- a/test/cfoa/reentrancy_check_test.cpp +++ b/test/cfoa/reentrancy_check_test.cpp @@ -63,7 +63,8 @@ int main() m1=m2; }); // LCOV_EXCL_START }); - }); // LCOV_EXCL_STOP + }); + // LCOV_EXCL_STOP detect_reentrancy([&] { m1.visit_all([&](value_type&) { @@ -71,7 +72,8 @@ int main() m2=m1; }); // LCOV_EXCL_START }); - }); // LCOV_EXCL_STOP + }); + // LCOV_EXCL_STOP return boost::report_errors(); }