kernel_cpp: Dynamic exception specifications were deprecated in C++11.

This commit is contained in:
Augustin Cavalier 2020-03-07 22:10:24 -05:00
parent 9a333ed1fc
commit 5c31a5242c

View File

@ -21,7 +21,7 @@ using std::nothrow;
typedef struct {} mynothrow_t;
extern const mynothrow_t mynothrow;
#if __cplusplus >= 201402L
#if __cplusplus >= 201103L
#define _THROW(x)
#define _NOEXCEPT noexcept
#else