My Project
void_t.hpp
Go to the documentation of this file.
1 
28 #ifndef BSL_VOID_T_HPP
29 #define BSL_VOID_T_HPP
30 
31 namespace bsl
32 {
34  template<typename...>
35  using void_t = void;
36 }
37 
38 #endif
void void_t
Utility that maps a sequence of any types to the type void.
Definition: void_t.hpp:35