You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
we get a compiler warning because eq(str, ...) expects a char * as second argument, so we loose the const qualifier for foo, but it should take a const char * instead
EDIT
same for ptr, should take const void *, but takes void * (I guess it's the same for every typed pointers too)
The text was updated successfully, but these errors were encountered:
when doing for example:
we get a compiler warning because eq(str, ...) expects a char * as second argument, so we loose the const qualifier for foo, but it should take a const char * instead
EDIT
same for ptr, should take const void *, but takes void * (I guess it's the same for every typed pointers too)
The text was updated successfully, but these errors were encountered: