Merge pull request #389 from correctmost/cm/remove-unreachable-return

Remove an unreachable return statement
This commit is contained in:
Daniel Lemire 2026-06-09 11:18:15 -04:00 committed by GitHub
commit 937198691a
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -65,6 +65,4 @@ int main() {
#endif
std::cout << "All tests passed successfully." << std::endl;
return EXIT_SUCCESS;
return 0;
}
}