c++ - benign (const) redefinition of parameters in function implementation
- Matthew Wilson (11/11) Aug 17 2003 Has this been fixed? (I may be using an older version of the compiler in...
- Walter (4/15) Aug 20 2003 No. Sorry.
Has this been fixed? (I may be using an older version of the compiler in the IDDE) // in A.h struct A { void fn(char *x); }; // in A.cpp void A::fn(char *const x) // Am getting the redefinition warning here { }
Aug 17 2003
No. Sorry. "Matthew Wilson" <matthew stlsoft.org> wrote in message news:bhpr4l$2bng$1 digitaldaemon.com...Has this been fixed? (I may be using an older version of the compiler intheIDDE) // in A.h struct A { void fn(char *x); }; // in A.cpp void A::fn(char *const x) // Am getting the redefinition warning here { }
Aug 20 2003