Remove an unreachable return statement

The redundant statement was reported by cppcheck.
This commit is contained in:
correctmost 2026-06-09 03:37:58 -04:00
parent e8ec8e8f34
commit 8fe7a9405b

View File

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