Fix compile error using MSVC2008 + cmake

This commit is contained in:
Daniel Genrich 2014-03-09 09:55:49 +01:00
parent d219312d44
commit 40d4fb9fce

@ -34,7 +34,7 @@
#include <cstring>
#ifdef _MSC_VER
#if (_MSC_VER < 1300)
#if (_MSC_VER <= 1500)
typedef short int16_t;
typedef int int32_t;
#else