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:
Alex Lorenz
2017-07-21 13:04:57 +00:00
parent 158063e4de
commit 4c0a86608f

View File

@@ -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;