summaryrefslogtreecommitdiff
path: root/include/lib/ArduinoJson/Data/JsonFloat.hpp
blob: 0ed42140f58d90a2651b364fae1e1398ed75dcac (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
// ArduinoJson - arduinojson.org
// Copyright Benoit Blanchon 2014-2018
// MIT License

#pragma once

#include "../Configuration.hpp"

namespace ArduinoJson {
namespace Internals {

#if ARDUINOJSON_USE_DOUBLE
typedef double JsonFloat;
#else
typedef float JsonFloat;
#endif
}
}