aboutsummaryrefslogtreecommitdiff
path: root/source
diff options
context:
space:
mode:
authorJordan Rupprecht <rupprecht@google.com>2019-10-01 22:04:14 +0000
committerJordan Rupprecht <rupprecht@google.com>2019-10-01 22:04:14 +0000
commit8c9018f59ad4a50d734e1cc77826fbd51f508116 (patch)
tree80cb04e3d86d8acb6c59c22288847aeb6ca41d5c /source
parentdf44378a2049d7d96fdf29c9707823bdb7e465c5 (diff)
downloadlldb-8c9018f59ad4a50d734e1cc77826fbd51f508116.tar.gz
[lldb] Fix unused variable warning
git-svn-id: https://llvm.org/svn/llvm-project/lldb/trunk@373399 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'source')
-rw-r--r--source/Plugins/SymbolFile/PDB/SymbolFilePDB.cpp1
1 files changed, 0 insertions, 1 deletions
diff --git a/source/Plugins/SymbolFile/PDB/SymbolFilePDB.cpp b/source/Plugins/SymbolFile/PDB/SymbolFilePDB.cpp
index bf9e06144..80eb1c760 100644
--- a/source/Plugins/SymbolFile/PDB/SymbolFilePDB.cpp
+++ b/source/Plugins/SymbolFile/PDB/SymbolFilePDB.cpp
@@ -1639,7 +1639,6 @@ void SymbolFilePDB::GetTypes(lldb_private::SymbolContextScope *sc_scope,
lldb_private::TypeList &type_list) {
std::lock_guard<std::recursive_mutex> guard(GetModuleMutex());
TypeCollection type_collection;
- uint32_t old_size = type_list.GetSize();
CompileUnit *cu =
sc_scope ? sc_scope->CalculateSymbolContextCompileUnit() : nullptr;
if (cu) {