We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
NO_INLINE
1 parent cb0dc94 commit 46a807bCopy full SHA for 46a807b
src/ArduinoJson/Polyfills/attributes.hpp
@@ -7,7 +7,6 @@
7
#ifdef _MSC_VER // Visual Studio
8
9
# define FORCE_INLINE // __forceinline causes C4714 when returning std::string
10
-# define NO_INLINE __declspec(noinline)
11
12
# ifndef ARDUINOJSON_DEPRECATED
13
# define ARDUINOJSON_DEPRECATED(msg) __declspec(deprecated(msg))
@@ -16,7 +15,6 @@
16
15
#elif defined(__GNUC__) // GCC or Clang
17
18
# define FORCE_INLINE __attribute__((always_inline))
19
-# define NO_INLINE __attribute__((noinline))
20
21
22
# if __GNUC__ > 4 || (__GNUC__ == 4 && __GNUC_MINOR__ >= 5)
@@ -29,7 +27,6 @@
29
27
#else // Other compilers
30
28
31
# define FORCE_INLINE
32
-# define NO_INLINE
33
34
35
# define ARDUINOJSON_DEPRECATED(msg)
0 commit comments