summaryrefslogtreecommitdiff
path: root/include/lib/ArduinoJson/Data/JsonFloat.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'include/lib/ArduinoJson/Data/JsonFloat.hpp')
-rw-r--r--include/lib/ArduinoJson/Data/JsonFloat.hpp18
1 files changed, 18 insertions, 0 deletions
diff --git a/include/lib/ArduinoJson/Data/JsonFloat.hpp b/include/lib/ArduinoJson/Data/JsonFloat.hpp
new file mode 100644
index 0000000..0ed4214
--- /dev/null
+++ b/include/lib/ArduinoJson/Data/JsonFloat.hpp
@@ -0,0 +1,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
+}
+}