1
0
Fork 0

Patch from Frederic Bouvier:

The compiler complains about too long names for instanciated templates
that result in name truncation. There are warnings but finally it ends
with a fatal errors. I found that ignoring the warning cure the
problem.
This commit is contained in:
david 2002-03-27 13:00:57 +00:00
parent 5ec0c135bc
commit bb2371dbd1

View file

@ -21,6 +21,10 @@
//
// $Id$
#ifdef _MSC_VER
#pragma warning (disable: 4786)
#endif
#include <simgear/misc/props.hxx>
#include <simgear/misc/sg_path.hxx>
#include <simgear/debug/logstream.hxx>