Skip to content

Latest commit

 

History

History
7 lines (5 loc) · 138 Bytes

stringify-operator-indirect

File metadata and controls

7 lines (5 loc) · 138 Bytes
 
Mar 3, 2010
Mar 3, 2010
1
2
3
4
5
6
// Should produce RIGHT and not WRONG.
#define WRONG RIGHT
#define STRINGIFY2(x) #x
#define STRINGIFY(x) STRINGIFY2(x)
STRINGIFY(WRONG)