forked from OSchip/llvm-project
Try to fix Green Dragon bot.
It doesn't like this std::tie() for some reason, hopefuly this fixes it. llvm-svn: 350262
This commit is contained in:
parent
8d58048024
commit
489cfbd9c5
|
@ -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())
|
||||
|
|
Loading…
Reference in New Issue