Skip to content

Commit

Permalink
Fix +inf.0 and -inf.0 for exact.
Browse files Browse the repository at this point in the history
  • Loading branch information
zaneenders committed Oct 10, 2024
1 parent dddc1c9 commit 1f1605c
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions src/core/localize.rkt
Original file line number Diff line number Diff line change
Expand Up @@ -192,6 +192,8 @@
(match exact
[`+nan.0 `+nan.0]
[`-nan.0 `-nan.0]
[`+inf.0 `+inf.0]
[`-inf.0 `-inf.0]
[value
; __exact double underscore to avoid conflicts with user provided
; variables. Could use name mangling long term.
Expand Down

0 comments on commit 1f1605c

Please sign in to comment.