"...composable_kernel_onnxruntime.git" did not exist on "c77ae65d40b1316dac02c4decf02d8517c840be2"
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 ...@@ -118,7 +118,7 @@ bool instruction::valid() const
{ {
computed = lit.get_shape(); computed = lit.get_shape();
} }
else if(op.name() == "@param" || op.name() == "@divzero") else if(op.name() == "@param" or op.name() == "@divzero")
{ {
computed = result; 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