From b258279337fd155c85c198ca057d3d2e86e85d33 Mon Sep 17 00:00:00 2001 From: Tomas Zeman Date: Fri, 27 Apr 2018 17:40:17 +0200 Subject: [PATCH] Try to fix Appveyor build #2 --- example/example05.cpp | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/example/example05.cpp b/example/example05.cpp index 3f91071..ce794d4 100644 --- a/example/example05.cpp +++ b/example/example05.cpp @@ -25,7 +25,12 @@ namespace fs = boost::filesystem; # error "Missing " # endif #else -# error "Missing __has_include" +# if defined(_MSC_VER) +# include +namespace fs = std::experimental::filesystem::v1; +# else +# error "Missing __has_include" +# endif #endif // clang-format on