From: Michael Jerris Date: Mon, 21 May 2007 19:34:43 +0000 (+0000) Subject: more warning stuff. X-Git-Tag: v1.0.6~38^2~781 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=443fe5b18335a5dd182d0b75dbeaea03acc95b12;p=thirdparty%2Ffreeswitch.git more warning stuff. git-svn-id: http://svn.openzap.org/svn/openzap/trunk@73 a93c3328-9c30-0410-af19-c9cd2b2d52af --- diff --git a/libs/openzap/src/isdn/include/Q931.h b/libs/openzap/src/isdn/include/Q931.h index 0ed40e5147..f320504e6a 100644 --- a/libs/openzap/src/isdn/include/Q931.h +++ b/libs/openzap/src/isdn/include/Q931.h @@ -113,9 +113,11 @@ #include "stdio.h" #ifdef _MSC_VER -/* warning C4100 : unreferenced formal parameter */ -/* warning C4189 : local variable is initialized but not referenced TODO: This one should not be disabled*/ -#pragma warning(disable:4100 4189) +/* warning C4244: conversion from 'type a' to 'type b', possible loss of data TODO: This one should not be disabled */ +/* warning C4189 : local variable is initialized but not referenced TODO: This one should not be disabled */ +/* warning C4554: '&' : check operator precedence for possible error; use parentheses to clarify precedence TODO: This one should not be disabled */ +/* warning C4267: '=' : conversion from 'size_t' to 'unsigned char', possible loss of data TODO: This one should not be disabled */ +#pragma warning(disable:4244 4189 4554 4267) #endif /*****************************************************************************