summaryrefslogtreecommitdiffstatshomepage
path: root/3rdparty
diff options
context:
space:
mode:
Diffstat (limited to '3rdparty')
-rw-r--r--3rdparty/compat/winsdk-override/wrl/internal.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/3rdparty/compat/winsdk-override/wrl/internal.h b/3rdparty/compat/winsdk-override/wrl/internal.h
index e2dad542cc3..da989d189db 100644
--- a/3rdparty/compat/winsdk-override/wrl/internal.h
+++ b/3rdparty/compat/winsdk-override/wrl/internal.h
@@ -20,7 +20,7 @@ namespace Microsoft {
inline void DECLSPEC_NORETURN RaiseException(HRESULT hr, DWORD flags = EXCEPTION_NONCONTINUABLE) throw() {
::RaiseException(static_cast<DWORD>(hr), flags, 0, NULL);
- throw std::exception();
+ std::abort();
}
template <bool b, typename T = void>