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