Skip to content

Commit

Permalink
Fix
Browse files Browse the repository at this point in the history
  • Loading branch information
k1LoW committed Sep 5, 2024
1 parent 9e2c25c commit 7de28d9
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions eval.go
Original file line number Diff line number Diff line change
Expand Up @@ -20,8 +20,8 @@ import (
const (
delimStart = "{{"
delimEnd = "}}"
maxUint = ^uint(0)
maxInt = int(maxUint >> 1)
maxUint = ^uint(0) //nostyle:repetition
maxInt = int(maxUint >> 1) //nostyle:repetition
)

var baseTreePrinterOptions = []exprtrace.TreePrinterOption{
Expand Down

0 comments on commit 7de28d9

Please sign in to comment.