Added code to avoid another useless vistual studio warning.

This commit is contained in:
Davis King 2013-10-02 19:08:13 -04:00
parent 10e890e1c7
commit f7606b483c

View File

@ -39,6 +39,10 @@
#pragma warning(disable : 4244)
#pragma warning(disable : 4305)
// Disable "warning C4180: qualifier applied to function type has no meaning; ignored".
// This warning happens often in generic code that works with functions and isn't useful.
#pragma warning(disable : 4180)
#endif
#ifdef __BORLANDC__