diff options
| author | David Lönnhager <david.l@mullvad.net> | 2019-11-05 10:39:34 +0100 |
|---|---|---|
| committer | David Lönnhager <david.l@mullvad.net> | 2019-11-18 13:24:18 +0100 |
| commit | 2a119a446e41676e75fa7cd55bc92ebf10f671cd (patch) | |
| tree | b8dd6e8ab7c5867f5e3d7724083ee5d850aebff1 /windows/nsis-plugins/src/tray/tray.cpp | |
| parent | 174fa135f2a6f19aad5982e4e1e909aae4c71c3b (diff) | |
| download | mullvadvpn-2a119a446e41676e75fa7cd55bc92ebf10f671cd.tar.xz mullvadvpn-2a119a446e41676e75fa7cd55bc92ebf10f671cd.zip | |
Use std::filesystem in nsis-plugins
Diffstat (limited to 'windows/nsis-plugins/src/tray/tray.cpp')
| -rw-r--r-- | windows/nsis-plugins/src/tray/tray.cpp | 4 |
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 ®key, 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). |
