From 18f95511fbcd714947d9ff305b2057aabe08c730 Mon Sep 17 00:00:00 2001 From: Vasiliy Kiryanov Date: Mon, 4 Nov 2024 07:41:25 -0500 Subject: [PATCH] fs namespace fix for Windows OS --- test/helper/fixture.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/helper/fixture.cpp b/test/helper/fixture.cpp index 59a10691..c9b2b116 100644 --- a/test/helper/fixture.cpp +++ b/test/helper/fixture.cpp @@ -28,7 +28,7 @@ #if defined(__APPLE__) namespace fs = std::__fs::filesystem; #else - namespace fs = std::fs::filesystem; + namespace fs = std::filesystem; #endif using namespace std;