On Thu, 27 Mar 2003 21:24:39 -0700 WillyB <[EMAIL PROTECTED]> wrote: > Yes.. that was from TerraGear.. > > there are/were others from FG... but no idea how to change it so they are > not there. > > I ran into this today... > > In file included from /usr/include/c++/3.2/backward/strstream:51, > from uiuc_2DdataFileReader.h:6, > from uiuc_2DdataFileReader.cpp:76: > /usr/include/c++/3.2/backward/backward_warning.h:32:2: warning: #warning > This file includes at least one deprecated or antiquated header. Please > consider using one of the 32 headers found in section 17.4.1.2 of the C++ > standard. >
StdC++ deprecates <strstream> in favor of <sstream>. Unfortunately not all compilers support the newer ostringstream and istringstream classes so we have to live with the warnings for now. On the other hand we could add a test for <sstream> to configure. Some code changes would also be required. Cheers, Bernie _______________________________________________ Flightgear-devel mailing list [EMAIL PROTECTED] http://mail.flightgear.org/mailman/listinfo/flightgear-devel
