Skip to content

Commit

Permalink
Include 'Merge pull request #173 from boostorg/fix-warning
Browse files Browse the repository at this point in the history
Avoid warning in test'
  • Loading branch information
Flamefire committed Nov 5, 2023
1 parent 2a0543f commit a064a3a
Showing 1 changed file with 7 additions and 2 deletions.
9 changes: 7 additions & 2 deletions test/test_fs.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -13,10 +13,15 @@
#include <nowide/convert.hpp>
#include <nowide/cstdio.hpp>
#include <nowide/fstream.hpp>
#include <nowide/quoted.hpp>
#include <nowide/utf/convert.hpp>
#include "test.hpp"
#include <iomanip>

#include <iomanip> // 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 <nowide/quoted.hpp>
#endif

#include <sstream>
#include <type_traits>
#if defined(_MSC_VER)
Expand Down

0 comments on commit a064a3a

Please sign in to comment.