We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Cast warning in tests/ft_strlen_test.cpp (lines 18 and 19) Adding (char *) cast (as below) fixes the issue
18 | /* 1 */ check(ft_strlen((char *)"123") == 3); showLeaks(); 19 | /* 2 */ check(ft_strlen((char *)"") == 0); showLeaks();
The text was updated successfully, but these errors were encountered:
Hi, this doesn't seem like a massive issue, feel free to open a pull request if you're comfortable with this idea.
Sorry, something went wrong.
No branches or pull requests
Cast warning in tests/ft_strlen_test.cpp (lines 18 and 19)
Adding (char *) cast (as below) fixes the issue
The text was updated successfully, but these errors were encountered: