aboutsummaryrefslogtreecommitdiff
path: root/c/win.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'c/win.cpp')
-rw-r--r--c/win.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/c/win.cpp b/c/win.cpp
index 95ec9a7..28dba27 100644
--- a/c/win.cpp
+++ b/c/win.cpp
@@ -145,7 +145,7 @@ Library::Library(const wchar_t* const lib)
{
m_hModule = LoadLibrary(lib);
if (!m_hModule)
- throw Win32Error();
+ throw Win32Error{};
}
Library::~Library()