diff options
| author | mtarik34b <mtarik34b@gmail.com> | 2025-04-15 05:26:36 +0200 |
|---|---|---|
| committer | mtarik34b <mtarik34b@gmail.com> | 2025-04-15 05:26:36 +0200 |
| commit | 1d2adbb3c6a756f7f289b5bba71aea459318b813 (patch) | |
| tree | ee05e5ffd238ad2afdc1e7c61070ee87fb81b960 /src/exact_value.cpp | |
| parent | 313d7d84bcfe086201640d23b449b77bdc08b135 (diff) | |
Remove reference to git issue
Diffstat (limited to 'src/exact_value.cpp')
| -rw-r--r-- | src/exact_value.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/exact_value.cpp b/src/exact_value.cpp index e7981a978..37751c8f1 100644 --- a/src/exact_value.cpp +++ b/src/exact_value.cpp @@ -955,7 +955,7 @@ gb_internal bool compare_exact_values(TokenKind op, ExactValue x, ExactValue y) f64 a = x.value_float; f64 b = y.value_float; if (isnan(a) || isnan(b)) { - return op == Token_NotEq; // Fixes #5004 + return op == Token_NotEq; } switch (op) { |