summaryrefslogtreecommitdiffstats
path: root/lldb
diff options
context:
space:
mode:
authorZachary Turner <zturner@google.com>2019-01-02 21:04:22 +0000
committerZachary Turner <zturner@google.com>2019-01-02 21:04:22 +0000
commit489cfbd9c50822e8e749fde49f0fc6c8c4b36b32 (patch)
tree301e2ed4474792584e855cac31533e58de120d02 /lldb
parent8d5804802498efe95bb3b81d2fdab607e7d1e02b (diff)
downloadbcm5719-llvm-489cfbd9c50822e8e749fde49f0fc6c8c4b36b32.tar.gz
bcm5719-llvm-489cfbd9c50822e8e749fde49f0fc6c8c4b36b32.zip
Try to fix Green Dragon bot.
It doesn't like this std::tie() for some reason, hopefuly this fixes it. llvm-svn: 350262
Diffstat (limited to 'lldb')
-rw-r--r--lldb/source/Plugins/SymbolFile/NativePDB/PdbAstBuilder.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/lldb/source/Plugins/SymbolFile/NativePDB/PdbAstBuilder.cpp b/lldb/source/Plugins/SymbolFile/NativePDB/PdbAstBuilder.cpp
index 8cf332f8a95..e289825172d 100644
--- a/lldb/source/Plugins/SymbolFile/NativePDB/PdbAstBuilder.cpp
+++ b/lldb/source/Plugins/SymbolFile/NativePDB/PdbAstBuilder.cpp
@@ -367,8 +367,8 @@ void PdbAstBuilder::BuildParentMap() {
std::vector<TypeIndex> full_keys;
std::vector<TypeIndex> fwd_keys;
for (auto &entry : m_parent_types) {
- TypeIndex key, value;
- std::tie(key, value) = entry;
+ TypeIndex key = entry.first;
+ TypeIndex value = entry.second;
auto iter = forward_to_full.find(value);
if (iter != forward_to_full.end())
OpenPOWER on IntegriCloud