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
{
11
using
type
= T;
12
};
13
template
<
typename
T >
14
struct
remove_const
< const T >
15
{
16
using
type
= T;
17
};
18
19
template
<
typename
T >
20
using
remove_const_t
=
typename
remove_const< T >::type
;
remove_const_t
typename remove_const< T >::type remove_const_t
Definition
remove_const.hpp:20
remove_const< const T >::type
T type
Definition
remove_const.hpp:16
remove_const
Definition
remove_const.hpp:10
remove_const::type
T type
Definition
remove_const.hpp:11
Generated by
1.13.2