From: J.P. K. <jp...@he...> - 2001-12-13 12:50:07
|
> void f (char *s); > const char *cs; > f(s); // Should fail > f(const_cast<char *>(cs)); // Should succeed, I think Tested, not really understood, but implemented cos it blatantly works. Changes committed. > - Peter Julian |