From 5c31a5242c23d1ff3a196799b9c0ab810365467f Mon Sep 17 00:00:00 2001 From: Augustin Cavalier Date: Sat, 7 Mar 2020 22:10:24 -0500 Subject: [PATCH] kernel_cpp: Dynamic exception specifications were deprecated in C++11. --- headers/private/kernel/util/kernel_cpp.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/headers/private/kernel/util/kernel_cpp.h b/headers/private/kernel/util/kernel_cpp.h index 39416a4ff7..604fad9585 100644 --- a/headers/private/kernel/util/kernel_cpp.h +++ b/headers/private/kernel/util/kernel_cpp.h @@ -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