Skip to content

Commit

Permalink
Remove limit on operator overload resolution
Browse files Browse the repository at this point in the history
  • Loading branch information
rrb3942 committed May 22, 2024
1 parent 3a27060 commit 4dd49bd
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion checker/checker.go
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ func ParseCheck(input string, config *conf.Config) (*parser.Tree, error) {
}

if len(config.Visitors) > 0 {
for i := 0; i < 1000; i++ {
for {
more := false
for _, v := range config.Visitors {
// We need to perform types check, because some visitors may rely on
Expand Down

0 comments on commit 4dd49bd

Please sign in to comment.