From 6be8e5ee549a51146782ab6f24a7439292a307e4 Mon Sep 17 00:00:00 2001 From: Simon Rozman Date: Mon, 7 Nov 2016 10:17:38 +0100 Subject: [PATCH] STRING() macro introduced --- include/WinStd/Common.h | 6 ++++++ 1 file changed, 6 insertions(+) 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 ///