From a064a3aa0f77c34a7a12b72a129f6faf769b979d Mon Sep 17 00:00:00 2001 From: Flamefire Date: Sun, 5 Nov 2023 08:57:22 +0000 Subject: [PATCH] Include 'Merge pull request #173 from boostorg/fix-warning Avoid warning in test' --- test/test_fs.cpp | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) diff --git a/test/test_fs.cpp b/test/test_fs.cpp index 0a6a7b94..a10049b2 100644 --- a/test/test_fs.cpp +++ b/test/test_fs.cpp @@ -13,10 +13,15 @@ #include #include #include -#include #include #include "test.hpp" -#include + +#include // Required for feature macro check below +// Conditional include to avoid warning/message +#if defined(__cpp_lib_quoted_string_io) && __cpp_lib_quoted_string_io >= 201304 +#include +#endif + #include #include #if defined(_MSC_VER)