From 753d7f55b8612e6f36fa542aec383ae1f3a50246 Mon Sep 17 00:00:00 2001 From: Ou7law007 <64309267+Ou7law007@users.noreply.github.com> Date: Sun, 24 Apr 2022 14:34:31 +0200 Subject: [PATCH] Removed "experimental" from std::experimental::filesystem. filesystem is now part of the std since C++17 --- CapcomLoader.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CapcomLoader.h b/CapcomLoader.h index 39be505..768c7be 100644 --- a/CapcomLoader.h +++ b/CapcomLoader.h @@ -87,7 +87,7 @@ static std::wstring Cl_GetDriverPath() static NTSTATUS Cl_RemoveSimilarDrivers( BYTE* Driver ) { - namespace fs = std::experimental::filesystem; + namespace fs = std::filesystem; std::wstring DriverPath = Cl_GetDriverPath();