mirror of
https://github.com/intel/llvm.git
synced 2026-01-22 23:49:22 +08:00
Fix another compiler error from r308731
std::pair in emplace back couldn't be constructed because SNodeId has an explicit constructor. Not sure how this even compiled on my machine before. llvm-svn: 308734
This commit is contained in:
@@ -469,7 +469,7 @@ public:
|
||||
|
||||
bool RootNodePair = true;
|
||||
|
||||
TreePairs.emplace_back(S1.getSize(), S2.getSize());
|
||||
TreePairs.emplace_back(SNodeId(S1.getSize()), SNodeId(S2.getSize()));
|
||||
|
||||
while (!TreePairs.empty()) {
|
||||
SNodeId LastRow, LastCol, FirstRow, FirstCol, Row, Col;
|
||||
|
||||
Reference in New Issue
Block a user