Back to home page

EIC code displayed by LXR

 
 

    


File indexing completed on 2025-07-01 08:45:49

0001 #ifndef PODIO_DETAIL_PREPROCESSORMACROS_H
0002 #define PODIO_DETAIL_PREPROCESSORMACROS_H
0003 
0004 // Preprocessor helper macros for concatenating tokens at preprocessing times
0005 // Necessary because we use __COUNTER__ for unique names of static
0006 // variables for values returned by registration function calls
0007 #define PODIO_PP_CONCAT_IMPL(x, y) x##y
0008 #define PODIO_PP_CONCAT(x, y) PODIO_PP_CONCAT_IMPL(x, y)
0009 
0010 #endif // PODIO_DETAIL_PREPROCESSORMACROS_H