Merge pull request #368 from x1sc0/main

fix warning C4702: unreachable code
This commit is contained in:
Daniel Lemire 2026-02-23 17:27:16 -05:00 committed by GitHub
commit 9f30728ce9
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -313,8 +313,6 @@ fastfloat_strncasecmp3(UC const *actual_mixedcase,
return false; return false;
} }
} }
return true;
} }
template <typename UC> template <typename UC>
@ -369,8 +367,6 @@ fastfloat_strncasecmp5(UC const *actual_mixedcase,
return false; return false;
} }
} }
return true;
} }
// Compares two ASCII strings in a case insensitive manner. // Compares two ASCII strings in a case insensitive manner.