We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e6fd96f commit 1f5a7ceCopy full SHA for 1f5a7ce
src/version.h
@@ -10,10 +10,11 @@
10
// client versioning
11
//
12
13
-static const int CLIENT_VERSION_MAJOR = 0;
14
-static const int CLIENT_VERSION_MINOR = 6;
15
-static const int CLIENT_VERSION_REVISION = 99;
16
-static const int CLIENT_VERSION_BUILD = 0;
+// These need to be macro's, as version.cpp's voodoo requires it
+#define CLIENT_VERSION_MAJOR 0
+#define CLIENT_VERSION_MINOR 6
+#define CLIENT_VERSION_REVISION 99
17
+#define CLIENT_VERSION_BUILD 0
18
19
static const int CLIENT_VERSION =
20
1000000 * CLIENT_VERSION_MAJOR
0 commit comments