summaryrefslogtreecommitdiff
path: root/include/lib/ArduinoJson/TypeTraits/IsSame.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'include/lib/ArduinoJson/TypeTraits/IsSame.hpp')
-rw-r--r--include/lib/ArduinoJson/TypeTraits/IsSame.hpp21
1 files changed, 0 insertions, 21 deletions
diff --git a/include/lib/ArduinoJson/TypeTraits/IsSame.hpp b/include/lib/ArduinoJson/TypeTraits/IsSame.hpp
deleted file mode 100644
index 06567c9..0000000
--- a/include/lib/ArduinoJson/TypeTraits/IsSame.hpp
+++ /dev/null
@@ -1,21 +0,0 @@
-// ArduinoJson - arduinojson.org
-// Copyright Benoit Blanchon 2014-2018
-// MIT License
-
-#pragma once
-
-namespace ArduinoJson {
-namespace Internals {
-
-// A meta-function that returns true if types T and U are the same.
-template <typename T, typename U>
-struct IsSame {
- static const bool value = false;
-};
-
-template <typename T>
-struct IsSame<T, T> {
- static const bool value = true;
-};
-}
-}