3-phase PV router
Loading...
Searching...
No Matches
Mk2_3phase_RFdatalog_temp
type_traits
remove_const.hpp
Go to the documentation of this file.
1
// ArduinoJson - https://arduinojson.org
2
// Copyright © 2014-2024, Benoit BLANCHON
3
// MIT License
4
5
#pragma once
6
7
// A meta-function that return the type T without the const modifier
8
template
<
typename
T >
9
struct
remove_const
{
10
using
type
= T;
11
};
12
template
<
typename
T >
13
struct
remove_const
<const T> {
14
using
type
= T;
15
};
16
17
template
<
typename
T>
18
using
remove_const_t
=
typename
remove_const<T>::type
;
19
remove_const_t
typename remove_const< T >::type remove_const_t
Definition:
remove_const.hpp:18
remove_const< const T >::type
T type
Definition:
remove_const.hpp:14
remove_const
Definition:
remove_const.hpp:9
remove_const::type
T type
Definition:
remove_const.hpp:10
Generated by
1.9.6