Derecho  0.9
Distributed systems toolkit for RDMA
git_version.cpp
Go to the documentation of this file.
1 
8 
9 /* #undef DERECHO_MAJOR_VERSION */
10 #define DERECHO_MINOR_VERSION 9
11 #define DERECHO_PATCH_VERSION 1
12 #define DERECHO_COMMITS_AHEAD 167
13 
14 #ifndef DERECHO_MAJOR_VERSION
15 #define DERECHO_MAJOR_VERSION 0
16 #endif
17 #ifndef DERECHO_MINOR_VERSION
18 #define DERECHO_MINOR_VERSION 0
19 #endif
20 #ifndef DERECHO_PATCH_VERSION
21 #define DERECHO_PATCH_VERSION 0
22 #endif
23 #ifndef DERECHO_COMMITS_AHEAD
24 #define DERECHO_COMMITS_AHEAD 0
25 #endif
26 
27 #define STR(x) #x
28 #define QUOTE(x) STR(x)
29 
30 namespace derecho {
31 
36 
38  "."
40  "."
43  "."
45  "."
47  "+"
49 } // namespace derecho
const int COMMITS_AHEAD_OF_VERSION
If the currently-compiled version of the Derecho library is more recent than the last "release" versi...
Definition: git_version.cpp:35
const int PATCH_VERSION
The current "patch" (more-minor) version number of the Derecho library, as defined by Git...
Definition: git_version.cpp:34
const char * VERSION_STRING
A constant C-style string containing the current Derecho library version in dot-separated format...
Definition: git_version.cpp:37
#define DERECHO_MINOR_VERSION
Definition: git_version.cpp:10
const int MAJOR_VERSION
The current major version number of the Derecho library, as defined by Git.
Definition: git_version.cpp:32
#define DERECHO_MAJOR_VERSION
Definition: git_version.cpp:15
#define DERECHO_COMMITS_AHEAD
Definition: git_version.cpp:12
#define DERECHO_PATCH_VERSION
Definition: git_version.cpp:11
const int MINOR_VERSION
The current minor version number of the Derecho library, as defined by Git.
Definition: git_version.cpp:33
const char * VERSION_STRING_PLUS_COMMITS
A constant C-style string containing the current Derecho library version in dot-separated format...
Definition: git_version.cpp:42
#define QUOTE(x)
Definition: git_version.cpp:28