From 651f209e207a63bd9a54e6f37ab44afb815fc146 Mon Sep 17 00:00:00 2001 From: joaquintides Date: Mon, 11 Sep 2023 09:53:20 +0200 Subject: [PATCH] shut down VS warning --- test/cfoa/insert_tests.cpp | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/test/cfoa/insert_tests.cpp b/test/cfoa/insert_tests.cpp index e1b53e68..229f0324 100644 --- a/test/cfoa/insert_tests.cpp +++ b/test/cfoa/insert_tests.cpp @@ -5,11 +5,16 @@ #include "helpers.hpp" +#include #include #include #include +#if defined(BOOST_MSVC) +#pragma warning(disable : 4127) // conditional expression is constant +#endif + struct raii_convertible { int x = 0, y = 0 ;