Suffix.h
Go to the documentation of this file.
1 //=================================================================================================
33 //=================================================================================================
34 
35 #ifndef _BLAZE_UTIL_SUFFIX_H_
36 #define _BLAZE_UTIL_SUFFIX_H_
37 
38 
39 //*************************************************************************************************
49 #define BLAZE_JOIN( X, Y ) BLAZE_DO_JOIN( X, Y )
50 #define BLAZE_DO_JOIN( X, Y ) BLAZE_DO_JOIN2(X,Y)
51 #define BLAZE_DO_JOIN2( X, Y ) X##Y
52 
53 //*************************************************************************************************
54 
55 #endif