Curt wrote:
> Tim has already been made aware that changes to JSBsim
> need to be submitted upstream or they will be lost the
> next time we sync with their code. I assume he has made
> contact there so these changes (if important) aren't lost
> in the future. It's good to see a few others besides
> myself watching to catch things like this.
I'm trying to figure out what's being resolved in this thread. Are we saying
that whacko constructs like this are no longer needed:
#ifdef FGFS
# include <simgear/compiler.h>
# include STL_STRING
# include STL_IOSTREAM
# include STL_FSTREAM
SG_USING_STD(cout);
SG_USING_STD(endl);
#else
# include <string>
# if defined(sgi) && !defined(__GNUC__) && (_COMPILER_VERSION < 740)
# include <iostream.h>
# include <fstream.h>
# else
# include <iostream>
# include <fstream>
using std::cout;
using std::endl;
# endif
#endif
... and are instead replaced with this?
#include <string>
#include <iostream>
#include <fstream>
using std::cout;
using std::endl;
using std::string;
Jon
-------------------------------------------------------------------------
Check out the new SourceForge.net Marketplace.
It's the best place to buy or sell services for
just about anything Open Source.
http://sourceforge.net/services/buy/index.php
_______________________________________________
Flightgear-devel mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/flightgear-devel