summaryrefslogtreecommitdiff
path: root/include/lib/ArduinoJson/TypeTraits/RemoveReference.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'include/lib/ArduinoJson/TypeTraits/RemoveReference.hpp')
-rw-r--r--include/lib/ArduinoJson/TypeTraits/RemoveReference.hpp20
1 files changed, 0 insertions, 20 deletions
diff --git a/include/lib/ArduinoJson/TypeTraits/RemoveReference.hpp b/include/lib/ArduinoJson/TypeTraits/RemoveReference.hpp
deleted file mode 100644
index 395a128..0000000
--- a/include/lib/ArduinoJson/TypeTraits/RemoveReference.hpp
+++ /dev/null
@@ -1,20 +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 reference modifier.
-template <typename T>
-struct RemoveReference {
- typedef T type;
-};
-template <typename T>
-struct RemoveReference<T&> {
- typedef T type;
-};
-}
-}