Skip to content

Commit

Permalink
Try to fix Appveyor build #2
Browse files Browse the repository at this point in the history
  • Loading branch information
zemasoft committed Apr 27, 2018
1 parent fca234a commit b258279
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion example/example05.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,12 @@ namespace fs = boost::filesystem;
# error "Missing <filesystem>"
# endif
#else
# error "Missing __has_include"
# if defined(_MSC_VER)
# include <filesystem>
namespace fs = std::experimental::filesystem::v1;
# else
# error "Missing __has_include"
# endif
#endif
// clang-format on

Expand Down

0 comments on commit b258279

Please sign in to comment.