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:
parent
5ec0c135bc
commit
bb2371dbd1
1 changed files with 4 additions and 0 deletions
|
@ -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>
|
||||
|
|
Loading…
Reference in a new issue