diff options
| -rw-r--r-- | windows/windns/src/windns/netsh.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/windows/windns/src/windns/netsh.cpp b/windows/windns/src/windns/netsh.cpp index 3214c72abe..8e1df6a44e 100644 --- a/windows/windns/src/windns/netsh.cpp +++ b/windows/windns/src/windns/netsh.cpp @@ -5,7 +5,7 @@ #include <libcommon/guid.h> #include <sstream> #include <stdexcept> -#include <experimental/filesystem> +#include <filesystem> #include <iphlpapi.h> namespace @@ -64,7 +64,7 @@ NetSh::NetSh(std::shared_ptr<ILogSink> logSink) : m_logSink(logSink) { const auto system32 = common::fs::GetKnownFolderPath(FOLDERID_System, 0, nullptr); - m_netShPath = std::experimental::filesystem::path(system32).append(L"netsh.exe"); + m_netShPath = std::filesystem::path(system32).append(L"netsh.exe"); } void NetSh::setIpv4StaticDns(uint32_t interfaceIndex, |
