3-phase PV router
Loading...
Searching...
No Matches
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
7template< typename T >
9{
10 typedef T type;
11};
12template< typename T >
13struct remove_cv< const T >
14{
15 typedef T type;
16};
17template< typename T >
18struct remove_cv< volatile T >
19{
20 typedef T type;
21};
22template< typename T >
23struct remove_cv< const volatile T >
24{
25 typedef T type;
26};