3-phase PV router
Loading...
Searching...
No Matches
Mk2_3phase_RFdatalog_temp
type_traits
remove_cv.hpp
Go to the documentation of this file.
1
// ArduinoJson - https://arduinojson.org
2
// Copyright © 2014-2023, Benoit BLANCHON
3
// MIT License
4
5
#pragma once
6
7
template
<
typename
T >
8
struct
remove_cv
9
{
10
typedef
T
type
;
11
};
12
template
<
typename
T >
13
struct
remove_cv
< const T >
14
{
15
typedef
T
type
;
16
};
17
template
<
typename
T >
18
struct
remove_cv
< volatile T >
19
{
20
typedef
T
type
;
21
};
22
template
<
typename
T >
23
struct
remove_cv
< const volatile T >
24
{
25
typedef
T
type
;
26
};
remove_cv< const T >::type
T type
Definition:
remove_cv.hpp:15
remove_cv< const volatile T >::type
T type
Definition:
remove_cv.hpp:25
remove_cv< volatile T >::type
T type
Definition:
remove_cv.hpp:20
remove_cv
Definition:
remove_cv.hpp:9
remove_cv::type
T type
Definition:
remove_cv.hpp:10
Generated by
1.9.6