]> git.proxmox.com Git - ceph.git/blob - ceph/cmake/modules/FindStdFilesystem_test.cc
bump version to 18.2.2-pve1
[ceph.git] / ceph / cmake / modules / FindStdFilesystem_test.cc
1 #include <filesystem>
2
3 namespace fs = std::filesystem;
4
5 int main() {
6 fs::create_directory("sandbox");
7 fs::remove_all("sandbox");
8 }