diff options
| author | gingerBill <bill@gingerbill.org> | 2021-01-09 23:43:34 +0000 |
|---|---|---|
| committer | gingerBill <bill@gingerbill.org> | 2021-01-09 23:43:34 +0000 |
| commit | 3bcccf88d578360bcc97e5903b316b2cfac39b03 (patch) | |
| tree | 0ae3f1f1ff2ced7b80fa23fe949443c90b92935a /core/encoding/cel | |
| parent | 9e8c46b8de123829f26c2e92fcaf15a81c9b6b01 (diff) | |
vet all core packages
Diffstat (limited to 'core/encoding/cel')
| -rw-r--r-- | core/encoding/cel/cel.odin | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/core/encoding/cel/cel.odin b/core/encoding/cel/cel.odin index 897b4adfd..f0cd49866 100644 --- a/core/encoding/cel/cel.odin +++ b/core/encoding/cel/cel.odin @@ -677,9 +677,9 @@ match_values :: proc(left, right: ^Value) -> bool { return false; } -calculate_binary_value :: proc(p: ^Parser, op: Kind, a, b: Value) -> (Value, bool) { +calculate_binary_value :: proc(p: ^Parser, op: Kind, a_, b_: Value) -> (Value, bool) { // TODO(bill): Calculate value as you go! - x, y := a, b; + x, y := a_, b_; match_values(&x, &y); |