Go to the documentation of this file. 1 #ifndef TTG_UTIL_MACRO_H
2 #define TTG_UTIL_MACRO_H
6 #define TTGUNUSED(x) ((void)(x))
10 #define TTG_UTIL_ALIAS_TEMPLATE_FUNCTION(aliasname,funcname)\
11 template<typename... Args> \
12 inline auto aliasname(Args&&... args) \
14 return funcname(std::forward<Args>(args)...); \