Changed debug/release to upper case.

This commit is contained in:
Nong Li
2012-12-17 14:41:00 -08:00
committed by Henry Robinson
parent b26f394624
commit d5687d2e9c

View File

@@ -252,9 +252,9 @@ string GetBuildVersion() {
stringstream ss;
ss << Version::BUILD_VERSION
#ifdef NDEBUG
<< " release"
<< " RELEASE"
#else
<< " debug"
<< " DEBUG"
#endif
<< " (build " << Version::BUILD_HASH
<< ")" << endl