mirror of
https://github.com/holub/mame
synced 2025-04-19 15:11:37 +03:00
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:
parent
bcb4be3a5d
commit
20d1c78b61
@ -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>
|
||||
|
Loading…
Reference in New Issue
Block a user