X-Git-Url: http://www.privoxy.org/gitweb/?a=blobdiff_plain;ds=sidebyside;f=config.h.win;h=79294ebca4db421538a0a659a46a1927124e406e;hb=1f58f8d9169e09e541e357ecb39ce3bf2a0325cf;hp=981dd84a76d110223d30c2e8b08b6d506aa8a35a;hpb=000b29e5e446891f0cc059918443d33c1c229971;p=privoxy.git diff --git a/config.h.win b/config.h.win index 981dd84a..79294ebc 100755 --- a/config.h.win +++ b/config.h.win @@ -11,7 +11,7 @@ * getting ludicrously long with feature defines. * * Copyright : Written by and Copyright (C) 2001 the SourceForge - * IJBSWA team. http://ijbswa.sourceforge.net + * Privoxy team. http://ijbswa.sourceforge.net * * Based on the Internet Junkbuster originally written * by and Copyright (C) 1997 Anonymous Coders and @@ -37,6 +37,12 @@ * * Revisions : * $Log: config.h.win,v $ + * Revision 1.16 2002/03/16 14:27:22 jongfoster + * Ignoring a very common warning. + * + * Revision 1.15 2002/03/13 00:28:32 jongfoster + * Hiding all the warnings generated by #include + * * Revision 1.14 2001/11/30 21:35:54 jongfoster * Bumping version number to 2.9.10 * @@ -430,24 +436,27 @@ #error This file is only intended for MS VC++ on Win32. For other compilers, please run configure. #endif /* (!defined(_MSC_VER)) && (!defined(RC_INVOKED)) */ -#pragma warning ( disable: 4100 4115 4201 4214 4514 ) - -/* - * C4100 : unreferenced formal parameter - * Very common, not a bug - * - * C4115 : named type definition in parentheses - * #include causes a warning about one of these. - * - * C4201 : nonstandard extension used : nameless struct/union - * Endemic in - * - * C4214 nonstandard extension used : bit field types other than int - * Endemic in - * - * C4514 unreferenced inline/local function has been removed - * Caused by #include - */ - +#pragma warning ( disable: 4100 4115 4201 4214 4244 4514 ) + +/* + * C4100 : unreferenced formal parameter + * Very common, not a bug + * + * C4115 : named type definition in parentheses + * #include causes a warning about one of these. + * + * C4201 : nonstandard extension used : nameless struct/union + * Endemic in + * + * C4214 nonstandard extension used : bit field types other than int + * Endemic in + * + * C4244 conversion from 'int' to 'char', possible loss of data + * Should really fix this one. Throughout the JB code. + * + * C4514 unreferenced inline/local function has been removed + * Caused by #include + */ + #endif /* CONFIG_H_INCLUDED */