From 20d1c78b615c2e7082b18b46e2de755be31cb0a9 Mon Sep 17 00:00:00 2001 From: smf- Date: Sun, 24 Sep 2017 17:34:52 +0100 Subject: Changed the clang workround for ../../../../../3rdparty/compat/winsdk-override\wrl/internal.h:23:13: error: function declared 'noreturn' should not return [-Werror,-Winvalid-noreturn] to work with clang 5.0 (nw) --- 3rdparty/compat/winsdk-override/wrl/internal.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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(hr), flags, 0, NULL); - throw std::exception(); + std::abort(); } template -- cgit v1.2.3