here is message of the compiler :
here is the function :Code:util.h(103) : error C2244: 'EqualOrNot' : unable to resolve function overload
Code:bool utility::EqualOrNot(char *x, char *y) { if (strlen(*x) != strlen(*y)) return 0; for (unsigned short int i = 0; i < strlen(*x); i++) if (*x[0] != *y[0]) return false; return 1; }


Reply With Quote
