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)

This commit is contained in:
smf- 2017-09-24 17:34:52 +01:00
parent bcb4be3a5d
commit 20d1c78b61

View File

@ -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>