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 (c) 2014-2024, Benoit BLANCHON
3
// MIT License
4
5
#pragma once
6
7
template
<
typename
... >
8
struct
make_void
9
{
10
using
type
= void;
11
};
12
13
template
<
typename
... Args >
14
using
void_t
=
typename
make_void
< Args... >::type;
15
// NOTE: using void_t = void; doesn't work on GCC 4.8
make_void
Definition
void_t.hpp:9
make_void::type
void type
Definition
void_t.hpp:10
void_t
typename make_void< Args... >::type void_t
Definition
void_t.hpp:14
Generated by
1.13.2