Skip to content

Instantly share code, notes, and snippets.

@alekratz
Created November 24, 2017 18:12
Show Gist options
  • Save alekratz/09c607eaae9e75c468cbae37e460fa66 to your computer and use it in GitHub Desktop.
Save alekratz/09c607eaae9e75c468cbae37e460fa66 to your computer and use it in GitHub Desktop.
#pragma once
#if __has_include(<filesystem>)
#include <filesystem>
#else
#include <experimental/filesystem>
namespace std {
namespace filesystem = experimental::filesystem;
};
#endif
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment