Skip to content

Commit

Permalink
Removed "experimental" from std::experimental::filesystem.
Browse files Browse the repository at this point in the history
filesystem is now part of the std since C++17
  • Loading branch information
Ou7law007 authored Apr 24, 2022
1 parent 4091c6b commit 753d7f5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion CapcomLoader.h
Original file line number Diff line number Diff line change
Expand Up @@ -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();

Expand Down

0 comments on commit 753d7f5

Please sign in to comment.