From 40e90a1a4f48c386fde1ddc88546c6b3f04a01e6 Mon Sep 17 00:00:00 2001 From: Isaac Torres Date: Mon, 5 Jun 2023 15:57:50 -0600 Subject: [PATCH] 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. --- src/gflags_reporting.cc | 3 --- 1 file changed, 3 deletions(-) diff --git a/src/gflags_reporting.cc b/src/gflags_reporting.cc index 20e0b1a..d29e0f3 100644 --- a/src/gflags_reporting.cc +++ b/src/gflags_reporting.cc @@ -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* substrings,