Remove a few more warnings

This commit is contained in:
Bill Hoffman 2009-11-10 07:54:52 -05:00
parent f5b7f95c45
commit 74981c1afd
1 changed files with 6 additions and 0 deletions

View File

@ -39,6 +39,12 @@
# pragma warn -8066 /* Unreachable code. */
# pragma warn -8057 /* Unused parameter. */
#endif
#if defined(_MSC_VER)
/* 'integral size mismatch in argument; conversion supplied */
# pragma warning(disable:4244)
/* conversion from 'size_t' to 'off_t', possible loss of data */
# pragma warning(disable:4267)
#endif
/*-- General stuff. --*/