From 3d8287265c82b6db7d696b3b549c83a582bbf63f Mon Sep 17 00:00:00 2001 From: Benoit Blanchon Date: Thu, 9 Feb 2023 19:06:10 +0100 Subject: [PATCH] Remove unused `NOEXCEPT` macro --- src/ArduinoJson/Polyfills/attributes.hpp | 6 ------ 1 file changed, 6 deletions(-) diff --git a/src/ArduinoJson/Polyfills/attributes.hpp b/src/ArduinoJson/Polyfills/attributes.hpp index 9e37c82a..4af0903d 100644 --- a/src/ArduinoJson/Polyfills/attributes.hpp +++ b/src/ArduinoJson/Polyfills/attributes.hpp @@ -21,12 +21,6 @@ #endif -#if __cplusplus >= 201103L -# define NOEXCEPT noexcept -#else -# define NOEXCEPT throw() -#endif - #if defined(__has_attribute) # if __has_attribute(no_sanitize) # define ARDUINOJSON_NO_SANITIZE(check) __attribute__((no_sanitize(check)))