mirror of
https://github.com/bblanchon/ArduinoJson.git
synced 2025-07-26 08:47:31 +02:00
Use float
instead of double
to reduce the size of JsonVariant
(issue #134)
This commit is contained in:
13
include/ArduinoJson/Internals/JsonInteger.hpp
Normal file
13
include/ArduinoJson/Internals/JsonInteger.hpp
Normal file
@ -0,0 +1,13 @@
|
||||
// Copyright Benoit Blanchon 2014-2015
|
||||
// MIT License
|
||||
//
|
||||
// Arduino JSON library
|
||||
// https://github.com/bblanchon/ArduinoJson
|
||||
|
||||
#pragma once
|
||||
|
||||
namespace ArduinoJson {
|
||||
namespace Internals {
|
||||
typedef long JsonInteger;
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user