]> git.mxchange.org Git - flightgear.git/commitdiff
Patch from Frederic Bouvier:
authordavid <david>
Wed, 27 Mar 2002 13:00:57 +0000 (13:00 +0000)
committerdavid <david>
Wed, 27 Mar 2002 13:00:57 +0000 (13:00 +0000)
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.

src/Sound/fg_fx.cxx

index d7b58e54390dcac6ab90a1a8e6336bb60ce7dc83..2636bc011a43a1fa7a39ed210b7a604b1fcfbc05 100644 (file)
 //
 // $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>