Add +DEBUG to the raw version string for DEBUG builds.

This will show up in the rpc server_info command.
There is no impact on the version string for release builds.
This commit is contained in:
Howard Hinnant
2014-09-23 14:48:18 -04:00
committed by Vinnie Falco
parent c54aff74b3
commit 81699a0971

View File

@@ -37,6 +37,9 @@ char const* BuildInfo::getRawVersionString ()
//
// http://semver.org/
//
#ifdef DEBUG
"+DEBUG"
#endif
//--------------------------------------------------------------------------
;