diff --git a/source/blender/blenlib/intern/noise.c b/source/blender/blenlib/intern/noise.c index 7797557c1f7..3a2dd12a804 100644 --- a/source/blender/blenlib/intern/noise.c +++ b/source/blender/blenlib/intern/noise.c @@ -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 #include "BLI_blenlib.h"