Merge pull request #300 from Qining/fix-slow-down-in-no-contraction-propagation

Fix the slow down in noContraction propagation
This commit is contained in:
John Kessenich 2016-05-20 13:44:07 -06:00
commit 393d74f068

View File

@ -401,7 +401,7 @@ bool TSymbolDefinitionCollectingTraverser::visitBinary(glslang::TVisit /* visit
} else {
// For other binary nodes, still traverse the right node.
current_object_.clear();
return true;
node->getRight()->traverse(this);
}
return false;
}