- restored msvc warning disable code

This commit is contained in:
Daniel Dunbar 2005-03-30 05:05:05 +00:00
parent cfd90889e2
commit 11a96fdddc

@ -32,6 +32,11 @@
*
*/
#ifdef _WIN32
#pragma warning (disable : 4244) // "conversion from double to float"
#pragma warning (disable : 4305) // "truncation from const double to float"
#endif
#include <math.h>
#include "BLI_blenlib.h"