mirror of
https://github.com/eledio-devices/thirdparty-ArduinoJson.git
synced 2025-11-01 16:14:05 +01:00
15 lines
232 B
C++
15 lines
232 B
C++
// Copyright Benoit Blanchon 2014
|
|
// MIT License
|
|
//
|
|
// Arduino JSON library
|
|
// https://github.com/bblanchon/ArduinoJson
|
|
|
|
#ifdef ARDUINO
|
|
|
|
inline void *operator new(size_t, void *p) throw() { return p; }
|
|
|
|
#else
|
|
|
|
#include <new>
|
|
|
|
#endif |