From 5fac67a67463f0c8751906aea98a257048d00749 Mon Sep 17 00:00:00 2001 From: LDA Date: Sat, 15 Jun 2024 13:54:49 +0200 Subject: [PATCH] [MOD] Fix stringification of version number It just kept bothering me. --- include/Cytoplasm/Cytoplasm.h | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/include/Cytoplasm/Cytoplasm.h b/include/Cytoplasm/Cytoplasm.h index 0119e06..a0d6af9 100644 --- a/include/Cytoplasm/Cytoplasm.h +++ b/include/Cytoplasm/Cytoplasm.h @@ -33,7 +33,8 @@ #define CYTOPLASM_VERSION_BETA 0 #define CYTOPLASM_VERSION_STABLE (!CYTOPLASM_VERSION_ALPHA && !CYTOPLASM_VERSION_BETA) -#define STRINGIFY(x) #x +#define XSTRINGIFY(x) #x +#define STRINGIFY(x) XSTRINGIFY(x) /*** * @Nm Cytoplasm