[Lldb-commits] [lldb] 9cd9f3f - [lldb] Fix gcc warnings in TypeCategory.cpp
Pavel Labath via lldb-commits
lldb-commits at lists.llvm.org
Mon Apr 20 07:13:02 PDT 2020
Author: Pavel Labath
Date: 2020-04-20T16:12:51+02:00
New Revision: 9cd9f3f1b8b7bfd30f7140c4c0006be5cead3e9a
URL: https://github.com/llvm/llvm-project/commit/9cd9f3f1b8b7bfd30f7140c4c0006be5cead3e9a
DIFF: https://github.com/llvm/llvm-project/commit/9cd9f3f1b8b7bfd30f7140c4c0006be5cead3e9a.diff
LOG: [lldb] Fix gcc warnings in TypeCategory.cpp
The cleanup in 3e3701f8a0bf left these variable unused.
Added:
Modified:
lldb/source/DataFormatters/TypeCategory.cpp
Removed:
################################################################################
diff --git a/lldb/source/DataFormatters/TypeCategory.cpp b/lldb/source/DataFormatters/TypeCategory.cpp
index 0cfa8d7eff78..8368c91a57f1 100644
--- a/lldb/source/DataFormatters/TypeCategory.cpp
+++ b/lldb/source/DataFormatters/TypeCategory.cpp
@@ -112,17 +112,15 @@ bool TypeCategoryImpl::Get(lldb::LanguageType lang,
if (!IsEnabled() || !IsApplicable(lang))
return false;
TypeFilterImpl::SharedPointer filter_sp;
- bool regex_filter = false;
// first find both Filter and Synth, and then check which is most recent
if (!GetTypeFiltersContainer()->Get(candidates, filter_sp))
- regex_filter = GetRegexTypeFiltersContainer()->Get(candidates, filter_sp);
+ GetRegexTypeFiltersContainer()->Get(candidates, filter_sp);
- bool regex_synth = false;
bool pick_synth = false;
ScriptedSyntheticChildren::SharedPointer synth;
if (!GetTypeSyntheticsContainer()->Get(candidates, synth))
- regex_synth = GetRegexTypeSyntheticsContainer()->Get(candidates, synth);
+ GetRegexTypeSyntheticsContainer()->Get(candidates, synth);
if (!filter_sp.get() && !synth.get())
return false;
else if (!filter_sp.get() && synth.get())
More information about the lldb-commits
mailing list