All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Groups Pages
Suffix.h
Go to the documentation of this file.
1 //=================================================================================================
20 //=================================================================================================
21 
22 #ifndef _BLAZE_UTIL_SUFFIX_H_
23 #define _BLAZE_UTIL_SUFFIX_H_
24 
25 
26 //*************************************************************************************************
36 #define BLAZE_JOIN( X, Y ) BLAZE_DO_JOIN( X, Y )
37 #define BLAZE_DO_JOIN( X, Y ) BLAZE_DO_JOIN2(X,Y)
38 #define BLAZE_DO_JOIN2( X, Y ) X##Y
39 
40 //*************************************************************************************************
41 
42 #endif