blob: 9c5e5fc3981a3d3e7ba97156440ae8cc75c33b0f (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
#ifndef __MACROS_INC
#define __MACROS_INC
// https://isocpp.org/wiki/faq/misc-technical-issues#macros-with-token-pasting
#define _MERGE_IMPL(a,b) a##b
#define MERGE(a,b) _MERGE_IMPL(a,b)
#define _MERGE_IMPL(a,b,c) a##b##c
#define MERGE(a,b,c) _MERGE_IMPL(a,b,c)
#endif
|