3-phase PV router
Loading...
Searching...
No Matches
Mk2_3phase_RFdatalog_temp
type_traits
void_t.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
template
<
typename
...>
8
struct
make_void
{
9
using
type
= void;
10
};
11
12
template
<
typename
... Args>
13
using
void_t
=
typename
make_void
<Args...>::type;
14
// NOTE: using void_t = void; doesn't work on GCC 4.8
15
make_void
Definition:
void_t.hpp:8
make_void::type
void type
Definition:
void_t.hpp:9
void_t
typename make_void< Args... >::type void_t
Definition:
void_t.hpp:13
Generated by
1.9.6