3-phase PV router
Loading...
Searching...
No Matches
Mk2_3phase_RFdatalog_temp
type_traits
remove_reference.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
// A meta-function that return the type T without the reference modifier.
8
template
<
typename
T >
9
struct
remove_reference
10
{
11
typedef
T
type
;
12
};
13
template
<
typename
T >
14
struct
remove_reference
< T& >
15
{
16
typedef
T
type
;
17
};
remove_reference< T & >::type
T type
Definition:
remove_reference.hpp:16
remove_reference
Definition:
remove_reference.hpp:10
remove_reference::type
T type
Definition:
remove_reference.hpp:11
Generated by
1.9.6