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:
Isaac Torres 2023-06-05 15:57:50 -06:00 committed by GitHub
parent 39798a58c0
commit 40e90a1a4f
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -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,