Skip to content

Commit

Permalink
[Parser] Fixed switch statement printing
Browse files Browse the repository at this point in the history
  • Loading branch information
dmed256 committed Jul 18, 2018
1 parent a09d3bc commit fbcc86f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/lang/statement.cpp
Expand Up @@ -827,7 +827,7 @@ namespace occa {
pout << "switch (";
pout.pushInlined(true);
condition->print(pout);
pout << ") {\n";
pout << ')';

blockStatement::print(pout);
pout.popInlined();
Expand Down

0 comments on commit fbcc86f

Please sign in to comment.