bug fix: missing break in switch statement

time-shift
Houtan Bastani 2010-03-15 12:22:52 +01:00
parent 195fdece71
commit 2c1af4dc3b
1 changed files with 3 additions and 0 deletions

View File

@ -3132,6 +3132,7 @@ TrinaryOpNode::writeOutput(ostream &output, ExprNodeOutputType output_type,
arg3->writeOutput(output, output_type, temporary_terms);
output << ")";
}
break;
case oNormpdf:
if (IS_C(output_type))
{
@ -3157,6 +3158,8 @@ TrinaryOpNode::writeOutput(ostream &output, ExprNodeOutputType output_type,
output << ")";
}
break;
default:
assert(false);
}
}