'_OLD_IOSTREAMS_ARE_DEPRECATED' - How do I clear this warning??
C / C++ / MFC
2
Posts
2
Posters
0
Views
1
Watching
-
Hiya when I make a c++ console app in .NET now, sometimes I get a warning saying: C4995: '_OLD_IOSTREAMS_ARE_DEPRECATED' This is when I am using cout or cin.. How do I clear this warning message?? Thanks, grahamoj
-
Hiya when I make a c++ console app in .NET now, sometimes I get a warning saying: C4995: '_OLD_IOSTREAMS_ARE_DEPRECATED' This is when I am using cout or cin.. How do I clear this warning message?? Thanks, grahamoj
replace : #include <iostream.h> with #include <iostream> eperales