From 90eca3254a5453cd06f18ffd87b5fe6e0f800a31 Mon Sep 17 00:00:00 2001 From: Andrew Gasparovic <55992101+agasparovic-sabre@users.noreply.github.com> Date: Mon, 6 Apr 2020 13:31:41 -0700 Subject: [PATCH] Remove unreachable code INFO: From Compiling external/com_github_gflags_gflags/src/gflags_completions.cc: external/com_github_gflags_gflags/src/gflags_completions.cc:459:16: warning: code will never be executed [-Wunreachable-code] DVLOG(3) << "Result: most-common match"; ^~ 1 warning generated. --- src/gflags_completions.cc | 4 ---- 1 file changed, 4 deletions(-) diff --git a/src/gflags_completions.cc b/src/gflags_completions.cc index c0ba325..158fa44 100644 --- a/src/gflags_completions.cc +++ b/src/gflags_completions.cc @@ -453,10 +453,6 @@ static void CategorizeAllMatchingFlags( // In the package, since there was no slash after the package portion notable_flags->package_flags.insert(*it); DVLOG(3) << "Result: package match"; - } else if (false) { - // In the list of the XXX most commonly supplied flags overall - // TODO(user): Compile this list. - DVLOG(3) << "Result: most-common match"; } else if (!package_dir.empty() && pos != string::npos && slash != string::npos) { // In a subdirectory of the package