STRING() macro introduced

This commit is contained in:
Simon Rozman 2016-11-07 10:17:38 +01:00
parent 6acc318f87
commit 6be8e5ee54

View File

@ -89,6 +89,12 @@
#define _L(x) __L(x)
#endif
///
/// Stringizing macro
///
#define STRING_IMPL(x) #x
#define STRING(x) STRING_IMPL(x)
///
/// Declares a class as non-copyable
///