mirror of
https://github.com/eledio-devices/thirdparty-ArduinoJson.git
synced 2025-11-01 00:38:27 +01:00
Redesigned JsonVariant to leverage converting constructors instead of assignment operators
This commit is contained in:
13
include/ArduinoJson/Internals/ForceInline.hpp
Normal file
13
include/ArduinoJson/Internals/ForceInline.hpp
Normal file
@@ -0,0 +1,13 @@
|
||||
// Copyright Benoit Blanchon 2014-2015
|
||||
// MIT License
|
||||
//
|
||||
// Arduino JSON library
|
||||
// https://github.com/bblanchon/ArduinoJson
|
||||
|
||||
#pragma once
|
||||
|
||||
#ifdef _MSC_VER
|
||||
#define JSON_FORCE_INLINE __forceinline
|
||||
#else
|
||||
#define JSON_FORCE_INLINE __attribute__((always_inline))
|
||||
#endif
|
||||
Reference in New Issue
Block a user