diff --git a/include/WinStd/Common.h b/include/WinStd/Common.h index 5b548c5e..eaa8299e 100644 --- a/include/WinStd/Common.h +++ b/include/WinStd/Common.h @@ -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 ///