added stdint.h for MSVC builds

This commit is contained in:
Stanislau Tsitsianok 2020-04-03 22:54:37 +03:00 committed by Andrew Murray
parent a491ed6889
commit 8aa2386c77

View File

@ -35,6 +35,7 @@
#include "Imaging.h"
#include <math.h>
#include <stdint.h>
#define CEIL(v) (int) ceil(v)
#define FLOOR(v) ((v) >= 0.0 ? (int) (v) : (int) floor(v))