Skip to content
Snippets Groups Projects
Commit dacd5bc2 authored by Ralf Jung's avatar Ralf Jung
Browse files

remove unnecessary parentheses

parent fbfb3ae7
No related branches found
No related tags found
No related merge requests found
......@@ -525,7 +525,7 @@ Definition bin_op_eval_bool (op : bin_op) (b1 b2 : bool) : option base_lit :=
Definition bin_op_eval_loc (op : bin_op) (l1 : loc) (v2 : base_lit) : option base_lit :=
match op, v2 with
| OffsetOp, (LitInt off) => Some $ LitLoc (l1 + off)
| OffsetOp, LitInt off => Some $ LitLoc (l1 + off)
| _, _ => None
end.
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment