From bb2371dbd1091aca73327a27c8f05057a1dc562f Mon Sep 17 00:00:00 2001 From: david Date: Wed, 27 Mar 2002 13:00:57 +0000 Subject: [PATCH] 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. --- src/Sound/fg_fx.cxx | 4 ++++ 1 file changed, 4 insertions(+) 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