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