mirror of
https://github.com/gflags/gflags.git
synced 2025-04-05 05:25:04 +00:00
fix: remove debug build from --version output (#2)
Fixes `Debug build` being printed when using --version. We always compile with asserts enabled (-UNDEBUG), so checking whether -NDEBUG is defined is not a reliable way of detecting whether it is a release or debug build for us.
This commit is contained in:
parent
39798a58c0
commit
40e90a1a4f
1 changed files with 0 additions and 3 deletions
|
@ -353,9 +353,6 @@ static void ShowVersion() {
|
|||
} else {
|
||||
fprintf(stdout, "%s\n", ProgramInvocationShortName());
|
||||
}
|
||||
# if !defined(NDEBUG)
|
||||
fprintf(stdout, "Debug build (NDEBUG not #defined)\n");
|
||||
# endif
|
||||
}
|
||||
|
||||
static void AppendPrognameStrings(vector<string>* substrings,
|
||||
|
|
Loading…
Add table
Reference in a new issue