mirror of
https://github.com/ceph/ceph
synced 2024-12-18 17:37:38 +00:00
d2b0382ec6
since we've dropped the support of GCC older than v8.0, there is no need to detect <experimental/filesystem> Signed-off-by: Kefu Chai <kchai@redhat.com>
9 lines
139 B
C++
9 lines
139 B
C++
#include <filesystem>
|
|
|
|
namespace fs = std::filesystem;
|
|
|
|
int main() {
|
|
fs::create_directory("sandbox");
|
|
fs::remove_all("sandbox");
|
|
}
|