It's crap like that that makes me dislike C++ sometimes.

This commit is contained in:
JoelKatz
2012-06-24 16:46:45 -07:00
parent 69d7b8a93d
commit 808cec521e

View File

@@ -8,7 +8,8 @@
#define SERVER_VERSION_SUB "-a"
#define SERVER_NAME "NewCoin"
#define SV_STRINGIZE(x) #x
#define SV_STRINGIZE(x) SV_STRINGIZE2(x)
#define SV_STRINGIZE2(x) #x
#define SERVER_VERSION \
(SERVER_NAME "-" SV_STRINGIZE(SERVER_VERSION_MAJ) "." SV_STRINGIZE(SERVER_VERSION_MIN) SERVER_VERSION_SUB)