ATLAS Offline Software
stringify.h
Go to the documentation of this file.
1 /*
2  Copyright (C) 2002-2017 CERN for the benefit of the ATLAS collaboration
3 */
4 
5 #ifndef RINGERSELECTORTOOLS_TOOLS_CXX_STRINGIZE_H
6 #define RINGERSELECTORTOOLS_TOOLS_CXX_STRINGIZE_H
7 
8 // Simple stringify macro
9 #define __STRINGIFY(x) #x
10 #define STRINGIFY(x) __STRINGIFY(x)
11 #define __PASTE(x,y) x##y
12 #define PASTE(x) __PASTE(x,y)
13 
14 #endif // RINGERSELECTORTOOLS_TOOLS_CXX_STRINGIZE_H