From: david Date: Wed, 27 Mar 2002 13:00:57 +0000 (+0000) Subject: Patch from Frederic Bouvier: X-Git-Url: https://git.mxchange.org/?a=commitdiff_plain;h=bb2371dbd1091aca73327a27c8f05057a1dc562f;p=flightgear.git 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. --- diff --git a/src/Sound/fg_fx.cxx b/src/Sound/fg_fx.cxx index d7b58e543..2636bc011 100644 --- a/src/Sound/fg_fx.cxx +++ b/src/Sound/fg_fx.cxx @@ -21,6 +21,10 @@ // // $Id$ +#ifdef _MSC_VER +#pragma warning (disable: 4786) +#endif + #include #include #include