summaryrefslogtreecommitdiffhomepage
path: root/windows/nsis-plugins/src/tray/tray.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'windows/nsis-plugins/src/tray/tray.cpp')
-rw-r--r--windows/nsis-plugins/src/tray/tray.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/windows/nsis-plugins/src/tray/tray.cpp b/windows/nsis-plugins/src/tray/tray.cpp
index f270c47261..3e52ea6e1e 100644
--- a/windows/nsis-plugins/src/tray/tray.cpp
+++ b/windows/nsis-plugins/src/tray/tray.cpp
@@ -12,7 +12,7 @@
#include <libcommon/security.h>
#include <nsis/pluginapi.h>
#include <stdexcept>
-#include <experimental/filesystem>
+#include <filesystem>
namespace
{
@@ -47,7 +47,7 @@ void UpdateRegistry(common::registry::RegistryKey &regkey, const std::wstring &v
//
const auto windir = common::fs::GetKnownFolderPath(FOLDERID_Windows, 0, nullptr);
- const auto explorer = std::experimental::filesystem::path(windir).append(L"explorer.exe");
+ const auto explorer = std::filesystem::path(windir).append(L"explorer.exe");
//
// Determine process id of active instance(s).