mirror of
https://github.com/bitcoin/bitcoin.git
synced 2025-01-24 18:23:26 -03:00
Drop unused CLIENT_VERSION_SUFFIX macro
This commit is contained in:
parent
ba348dbc51
commit
1e06bb68be
1 changed files with 1 additions and 7 deletions
|
@ -14,11 +14,6 @@
|
|||
*/
|
||||
const std::string CLIENT_NAME("Satoshi");
|
||||
|
||||
/**
|
||||
* Client version number
|
||||
*/
|
||||
#define CLIENT_VERSION_SUFFIX ""
|
||||
|
||||
|
||||
/**
|
||||
* The following part of the code determines the CLIENT_BUILD variable.
|
||||
|
@ -33,7 +28,6 @@ const std::string CLIENT_NAME("Satoshi");
|
|||
* * if BUILD_DESC is defined, use that literally (output of git-describe)
|
||||
* * if not, but GIT_COMMIT is defined, use v[maj].[min].[rev].[build]-g[commit]
|
||||
* * otherwise, use v[maj].[min].[rev].[build]-unk
|
||||
* finally CLIENT_VERSION_SUFFIX is added
|
||||
*/
|
||||
|
||||
//! First, include build.h if requested
|
||||
|
@ -66,7 +60,7 @@ const std::string CLIENT_NAME("Satoshi");
|
|||
#endif
|
||||
#endif
|
||||
|
||||
const std::string CLIENT_BUILD(BUILD_DESC CLIENT_VERSION_SUFFIX);
|
||||
const std::string CLIENT_BUILD(BUILD_DESC);
|
||||
|
||||
static std::string FormatVersion(int nVersion)
|
||||
{
|
||||
|
|
Loading…
Add table
Reference in a new issue