Skip to content

Commit 46a807b

Browse files
committed
Remove unused NO_INLINE
1 parent cb0dc94 commit 46a807b

File tree

1 file changed

+0
-3
lines changed

1 file changed

+0
-3
lines changed

src/ArduinoJson/Polyfills/attributes.hpp

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,6 @@
77
#ifdef _MSC_VER // Visual Studio
88

99
# define FORCE_INLINE // __forceinline causes C4714 when returning std::string
10-
# define NO_INLINE __declspec(noinline)
1110

1211
# ifndef ARDUINOJSON_DEPRECATED
1312
# define ARDUINOJSON_DEPRECATED(msg) __declspec(deprecated(msg))
@@ -16,7 +15,6 @@
1615
#elif defined(__GNUC__) // GCC or Clang
1716

1817
# define FORCE_INLINE __attribute__((always_inline))
19-
# define NO_INLINE __attribute__((noinline))
2018

2119
# ifndef ARDUINOJSON_DEPRECATED
2220
# if __GNUC__ > 4 || (__GNUC__ == 4 && __GNUC_MINOR__ >= 5)
@@ -29,7 +27,6 @@
2927
#else // Other compilers
3028

3129
# define FORCE_INLINE
32-
# define NO_INLINE
3330

3431
# ifndef ARDUINOJSON_DEPRECATED
3532
# define ARDUINOJSON_DEPRECATED(msg)

0 commit comments

Comments
 (0)