summaryrefslogtreecommitdiff
path: root/include/lib/ArduinoJson/TypeTraits/RemoveConst.hpp
blob: 39d4cb5a52b31aa7fa7e03ce2a2a2f098eb397fe (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
// 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 RemoveConst {
  typedef T type;
};
template <typename T>
struct RemoveConst<const T> {
  typedef T type;
};
}
}