summaryrefslogtreecommitdiffhomepage
path: root/windows/nsis-plugins/src/string/string.cpp
diff options
context:
space:
mode:
authorOdd Stranne <odd@mullvad.net>2020-01-28 12:30:33 +0100
committerOdd Stranne <odd@mullvad.net>2020-01-28 14:29:08 +0100
commit5ba8f62fb81f13f7ffa9b816ba33cbb814ce1417 (patch)
tree02696149b415b628c4291274e8a4fe22b12f9dd4 /windows/nsis-plugins/src/string/string.cpp
parentf62a8069fc6dc602ec0e3c6c345714b280d0fba9 (diff)
downloadmullvadvpn-5ba8f62fb81f13f7ffa9b816ba33cbb814ce1417.tar.xz
mullvadvpn-5ba8f62fb81f13f7ffa9b816ba33cbb814ce1417.zip
Use new exception macros
Diffstat (limited to 'windows/nsis-plugins/src/string/string.cpp')
-rw-r--r--windows/nsis-plugins/src/string/string.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/windows/nsis-plugins/src/string/string.cpp b/windows/nsis-plugins/src/string/string.cpp
index 6071e6303d..230a9a3696 100644
--- a/windows/nsis-plugins/src/string/string.cpp
+++ b/windows/nsis-plugins/src/string/string.cpp
@@ -1,6 +1,6 @@
#include "stdafx.h"
#include <nsis/pluginapi.h>
-#include <stdexcept>
+#include <libcommon/error.h>
#include <string>
// Suppress warnings caused by broken legacy code
@@ -21,7 +21,7 @@ std::wstring PopString()
if (!g_stacktop || !*g_stacktop)
{
- throw std::runtime_error("NSIS variable stack is corrupted");
+ THROW_ERROR("NSIS variable stack is corrupted");
}
stack_t *th = *g_stacktop;