Commit 60fd7a8f authored by Ted Themistokleous's avatar Ted Themistokleous
Browse files

Replace || operator with or to pass cppcheck

parent 7f97b8ef
......@@ -118,7 +118,7 @@ bool instruction::valid() const
{
computed = lit.get_shape();
}
else if(op.name() == "@param" || op.name() == "@divzero")
else if(op.name() == "@param" or op.name() == "@divzero")
{
computed = result;
}
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment