|
Prev: assigmnet operator when class data members are immutable
Next: very newbie question about object creation count
From: mk on 30 Mar 2008 02:08 Respected sir, i am student from india currently working on project which requires some .cc files and i have downloaded and working on them .. now when i m trying to compile the code it says few errors like invalid conversion from `unsigned char*' to `char*' invalid conversion from 'char* to unsigned char*' its my humble request to u to provide me the solution.. it will be grateful of u .. thanking you manish jain chennai(INDIA)
From: Jim Langston on 30 Mar 2008 02:12
mk wrote: > Respected sir, > i am student from india currently working on project which requires > some .cc files and i have downloaded and working on them .. now when i > m trying to compile the code it says few errors > like > invalid conversion from `unsigned char*' to `char*' > invalid conversion from 'char* to unsigned char*' > its my humble request to u to provide me the solution.. it will be > grateful of u .. > thanking you > manish jain > chennai(INDIA) We need to see the code where the errors are occuring and the context, I.E. how the variables are defined, if it's a function call the function prototype (declaration), etc.. It is probably something as simple as you are defining some array as a char[] instead of unsigned char[] or such. Hard to say without seeing the code. -- Jim Langston tazmaster(a)rocketmail.com |