>From 9ce602f04e0599b4b1ab4d59299ca82eaaa19e76 Mon Sep 17 00:00:00 2001 From: Ryan Pavlik Date: Tue, 4 May 2010 17:27:45 -0500 Subject: [PATCH 2/2] Disable a frequent warning from MSVC --- TooN.h | 4 ++++ 1 files changed, 4 insertions(+), 0 deletions(-) diff --git a/TooN.h b/TooN.h index e85fe8f..1dc2f58 100644 --- a/TooN.h +++ b/TooN.h @@ -28,6 +28,10 @@ // invalidate any other reasons why the executable file might be covered by // the GNU General Public License. +#ifdef _MSC_VER +// Disable annoying VS warnings from TooN +#pragma warning(disable: 4181) +#endif #ifndef TOON_INCLUDE_TOON_H #define TOON_INCLUDE_TOON_H -- 1.7.1