Some renaming leftovers.

This commit is contained in:
chriseth
2018-10-15 12:51:50 +02:00
parent b2b845d6de
commit 0664772ece
3 changed files with 4 additions and 4 deletions
+2 -2
View File
@@ -56,14 +56,14 @@ void ExpressionSplitter::operator()(Switch& _switch)
{
outlineExpression(*_switch.expression);
for (auto& _case: _switch.cases)
// Do not visit the case expression, nothing to break there.
// Do not visit the case expression, nothing to split there.
(*this)(_case.body);
}
void ExpressionSplitter::operator()(ForLoop& _loop)
{
(*this)(_loop.pre);
// Do not visit the condition because we cannot break expressions there.
// Do not visit the condition because we cannot split expressions there.
(*this)(_loop.post);
(*this)(_loop.body);
}