Browse Source

Remove reference to git issue

mtarik34b 4 months ago
parent
commit
1d2adbb3c6
2 changed files with 1 additions and 1 deletions
  1. 1 1
      src/exact_value.cpp
  2. 0 0
      tests/internal/test_nan_constant_comparison.odin

+ 1 - 1
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 a = x.value_float;
 		f64 b = y.value_float;
 		f64 b = y.value_float;
 		if (isnan(a) || isnan(b)) {
 		if (isnan(a) || isnan(b)) {
-			return op == Token_NotEq; // Fixes #5004
+			return op == Token_NotEq;
 		}
 		}
 
 
 		switch (op) {
 		switch (op) {

+ 0 - 0
tests/internal/test_5004_nan_constant_comparison.odin → tests/internal/test_nan_constant_comparison.odin