diff options
| author | Pavel Labath <labath@google.com> | 2018-05-31 09:46:26 +0000 |
|---|---|---|
| committer | Pavel Labath <labath@google.com> | 2018-05-31 09:46:26 +0000 |
| commit | 34cda14b09e0e55f59ce374265207d9af04d27be (patch) | |
| tree | 8048944a9b23fa6a48ccfd966b08b2cd467c0bca /lldb/source/Plugins/SymbolFile/PDB/SymbolFilePDB.h | |
| parent | af3226752b4de38df6b486f5e8949152d1c1daed (diff) | |
| download | bcm5719-llvm-34cda14b09e0e55f59ce374265207d9af04d27be.tar.gz bcm5719-llvm-34cda14b09e0e55f59ce374265207d9af04d27be.zip | |
Remove append parameter to FindGlobalVariables
Summary:
As discussed in https://bugs.llvm.org/show_bug.cgi?id=37317,
FindGlobalVariables does not properly handle the case where
append=false. As this doesn't seem to be used in the tree, this patch
removes the parameter entirely.
Reviewers: clayborg, jingham, labath
Reviewed By: clayborg
Subscribers: aprantl, lldb-commits, kubamracek, JDevlieghere
Differential Revision: https://reviews.llvm.org/D46885
Patch by Tom Tromey <ttromey@mozilla.com>.
llvm-svn: 333639
Diffstat (limited to 'lldb/source/Plugins/SymbolFile/PDB/SymbolFilePDB.h')
| -rw-r--r-- | lldb/source/Plugins/SymbolFile/PDB/SymbolFilePDB.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lldb/source/Plugins/SymbolFile/PDB/SymbolFilePDB.h b/lldb/source/Plugins/SymbolFile/PDB/SymbolFilePDB.h index 177eef9d5e9..96b62d68a6c 100644 --- a/lldb/source/Plugins/SymbolFile/PDB/SymbolFilePDB.h +++ b/lldb/source/Plugins/SymbolFile/PDB/SymbolFilePDB.h @@ -111,11 +111,11 @@ public: uint32_t FindGlobalVariables(const lldb_private::ConstString &name, const lldb_private::CompilerDeclContext *parent_decl_ctx, - bool append, uint32_t max_matches, + uint32_t max_matches, lldb_private::VariableList &variables) override; uint32_t FindGlobalVariables(const lldb_private::RegularExpression ®ex, - bool append, uint32_t max_matches, + uint32_t max_matches, lldb_private::VariableList &variables) override; uint32_t |

