Back to home page

EIC code displayed by LXR

 
 

    


Warning, file /include/podio/detail/PreprocessorMacros.h was not indexed or was modified since last indexation (in which case cross-reference links may be missing, inaccurate or erroneous).

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