gambit is hosted by Hepforge, IPPP Durham
GAMBIT  v1.5.0-2191-ga4742ac
a Global And Modular Bsm Inference Tool
stringify.hpp
Go to the documentation of this file.
1 // GAMBIT: Global and Modular BSM Inference Tool
2 // *********************************************
23 
24 #ifndef __stringify_hpp__
25 #define __stringify_hpp__
26 
29 #define STRINGIFY(X) STRINGIFY2(X)
30 #define STRINGIFY2(X) #X
31 #define SAFE_STRINGIFY(...) SAFE_STRINGIFY2(__VA_ARGS__)
33 #define SAFE_STRINGIFY2(...) #__VA_ARGS__
34 
36 #endif //defined __util_macros_hpp__