mirror of
https://github.com/microsoft/GSL.git
synced 2024-11-03 17:56:43 -05:00
Fix clang warning -Winvalid-noreturn on Windows
This commit is contained in:
parent
1b15a73942
commit
2238c4760e
@ -27,7 +27,7 @@
|
|||||||
#if defined(__clang__)
|
#if defined(__clang__)
|
||||||
#define GSL_SUPPRESS(x) [[gsl::suppress("x")]]
|
#define GSL_SUPPRESS(x) [[gsl::suppress("x")]]
|
||||||
#else
|
#else
|
||||||
#if defined (_MSC_VER)
|
#if defined(_MSC_VER)
|
||||||
#define GSL_SUPPRESS(x) [[gsl::suppress(x)]]
|
#define GSL_SUPPRESS(x) [[gsl::suppress(x)]]
|
||||||
#else
|
#else
|
||||||
#define GSL_SUPPRESS(x)
|
#define GSL_SUPPRESS(x)
|
||||||
@ -113,19 +113,20 @@ namespace details
|
|||||||
|
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
[[noreturn]] inline void terminate() noexcept
|
|
||||||
{
|
|
||||||
#if defined(GSL_MSVC_USE_STL_NOEXCEPTION_WORKAROUND)
|
#if defined(GSL_MSVC_USE_STL_NOEXCEPTION_WORKAROUND)
|
||||||
(*gsl::details::get_terminate_handler())();
|
inline void terminate() noexcept { (*gsl::details::get_terminate_handler())(); }
|
||||||
#else
|
#else
|
||||||
std::terminate();
|
[[noreturn]] inline void terminate() noexcept { std::terminate(); }
|
||||||
#endif
|
#endif
|
||||||
}
|
|
||||||
|
|
||||||
#if defined(GSL_TERMINATE_ON_CONTRACT_VIOLATION)
|
#if defined(GSL_TERMINATE_ON_CONTRACT_VIOLATION)
|
||||||
|
|
||||||
template <typename Exception>
|
template <typename Exception>
|
||||||
|
#if defined(GSL_MSVC_USE_STL_NOEXCEPTION_WORKAROUND)
|
||||||
|
void throw_exception(Exception&&) noexcept
|
||||||
|
#else
|
||||||
[[noreturn]] void throw_exception(Exception&&) noexcept
|
[[noreturn]] void throw_exception(Exception&&) noexcept
|
||||||
|
#endif
|
||||||
{
|
{
|
||||||
gsl::details::terminate();
|
gsl::details::terminate();
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user