summaryrefslogtreecommitdiff
path: root/include/lib/ArduinoJson/TypeTraits/IsArray.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'include/lib/ArduinoJson/TypeTraits/IsArray.hpp')
-rw-r--r--include/lib/ArduinoJson/TypeTraits/IsArray.hpp24
1 files changed, 0 insertions, 24 deletions
diff --git a/include/lib/ArduinoJson/TypeTraits/IsArray.hpp b/include/lib/ArduinoJson/TypeTraits/IsArray.hpp
deleted file mode 100644
index da42072..0000000
--- a/include/lib/ArduinoJson/TypeTraits/IsArray.hpp
+++ /dev/null
@@ -1,24 +0,0 @@
-// ArduinoJson - arduinojson.org
-// Copyright Benoit Blanchon 2014-2018
-// MIT License
-
-#pragma once
-
-namespace ArduinoJson {
-namespace Internals {
-
-// A meta-function that return the type T without the const modifier
-template <typename T>
-struct IsArray {
- static const bool value = false;
-};
-template <typename T>
-struct IsArray<T[]> {
- static const bool value = true;
-};
-template <typename T, size_t TN>
-struct IsArray<T[TN]> {
- static const bool value = true;
-};
-}
-}