Back to home page

EIC code displayed by LXR

 
 

    


File indexing completed on 2025-12-17 10:07:31

0001 #ifndef CPPCORO_FILESYSTEM_HPP_INCLUDED
0002 #define CPPCORO_FILESYSTEM_HPP_INCLUDED
0003 
0004 #if __has_include(<filesystem>)
0005 
0006 #include <filesystem>
0007 
0008 namespace cppcoro {
0009     namespace filesystem = std::filesystem;
0010 }
0011 
0012 #elif __has_include(<experimental/filesystem>)
0013 
0014 #include <experimental/filesystem>
0015 
0016 namespace cppcoro {
0017     namespace filesystem = std::experimental::filesystem;
0018 }
0019 
0020 #else
0021 #error Cppcoro requires a C++20 compiler with filesystem support
0022 #endif
0023 
0024 #endif