mirror of
https://github.com/mutouyun/cpp-ipc.git
synced 2025-12-07 01:06:45 +08:00
21 lines
402 B
C++
21 lines
402 B
C++
/**
|
|
* @file libimp/generic.h
|
|
* @author mutouyun (orz@orzz.org)
|
|
* @brief Tools for generic programming
|
|
* @date 2022-03-01
|
|
*/
|
|
#pragma once
|
|
|
|
#include "libimp/def.h"
|
|
|
|
LIBIMP_NAMESPACE_BEG_
|
|
|
|
/**
|
|
* @brief Utility metafunction that maps a sequence of any types to the type void
|
|
* @see https://en.cppreference.com/w/cpp/types/void_t
|
|
*/
|
|
template <typename...>
|
|
using void_t = void;
|
|
|
|
LIBIMP_NAMESPACE_END_
|