diff --git a/include/exiv2/types.hpp b/include/exiv2/types.hpp index 7d23bd17..bdd52326 100644 --- a/include/exiv2/types.hpp +++ b/include/exiv2/types.hpp @@ -27,32 +27,13 @@ #include "slice.hpp" // + standard includes +#include #include #include #include #include #include -#ifdef _MSC_VER -// Visual Studio 2010 and later has stdint.h -# if _MSC_VER >= _MSC_VER_2010 -# include -# else -// Earlier compilers have MS C99 equivalents such as __int8 - typedef unsigned __int8 uint8_t; - typedef unsigned __int16 uint16_t; - typedef unsigned __int32 uint32_t; - typedef unsigned __int64 uint64_t; - typedef __int8 int8_t; - typedef __int16 int16_t; - typedef __int32 int32_t; - typedef __int64 int64_t; -# endif -#else - # include -#endif - - // MSVC macro to convert a string to a wide string #ifdef EXV_UNICODE_PATH # define EXV_WIDEN(t) L ## t