diff options
author | Jim Ingham <jingham@apple.com> | 2015-11-04 01:24:04 +0000 |
---|---|---|
committer | Jim Ingham <jingham@apple.com> | 2015-11-04 01:24:04 +0000 |
commit | fe617b1e99916336269da675a16ccd0b511e8493 (patch) | |
tree | 11f6e1301b09bc27e53b4bfc8ae904da00948f21 | |
parent | 35fe692025ca3e7604c5ca80ae8deb99acd8604e (diff) | |
download | bcm5719-llvm-fe617b1e99916336269da675a16ccd0b511e8493.tar.gz bcm5719-llvm-fe617b1e99916336269da675a16ccd0b511e8493.zip |
Fix a shadowed ivar in SearchFilterByModuleListAndCU.
llvm-svn: 252029
-rw-r--r-- | lldb/include/lldb/Core/SearchFilter.h | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/lldb/include/lldb/Core/SearchFilter.h b/lldb/include/lldb/Core/SearchFilter.h index 31c31f74592..3d5e1fb39b4 100644 --- a/lldb/include/lldb/Core/SearchFilter.h +++ b/lldb/include/lldb/Core/SearchFilter.h @@ -406,7 +406,7 @@ protected: lldb::SearchFilterSP DoCopyForBreakpoint (Breakpoint &breakpoint) override; -private: +protected: FileSpecList m_module_spec_list; }; @@ -462,7 +462,6 @@ protected: DoCopyForBreakpoint (Breakpoint &breakpoint) override; private: - FileSpecList m_module_spec_list; FileSpecList m_cu_spec_list; }; |