Hi everyone
I am compiling code in MVC++ 7.1 with warning level 3.
The following code only produces a warning c4244 if placed in certain files in the solution.
int yyy=6;
double xxxx=6.0;
float ffff=6.0;
yyy=xxxx;
How is this happening when the warning level applies to all files in the project/solution?
Thanks for any help!
I am compiling code in MVC++ 7.1 with warning level 3.
The following code only produces a warning c4244 if placed in certain files in the solution.
int yyy=6;
double xxxx=6.0;
float ffff=6.0;
yyy=xxxx;
How is this happening when the warning level applies to all files in the project/solution?
Thanks for any help!