Commit ed29d91d authored by kamjagin's avatar kamjagin

adding std to cstdint typedef of uint32_t

parent b595d73d
...@@ -70,7 +70,7 @@ endif(WITH_OPENGL) ...@@ -70,7 +70,7 @@ endif(WITH_OPENGL)
if(APPLE) if(APPLE)
if(WITH_CARBON) if(WITH_CARBON)
set(HAVE_CARBON YES) set(HAVE_CARBON YES)
elseif(NOT IOS) elif(NOT IOS)
set(HAVE_COCOA YES) set(HAVE_COCOA YES)
endif() endif()
endif() endif()
...@@ -201,10 +201,11 @@ ...@@ -201,10 +201,11 @@
#if !defined _MSC_VER && !defined __BORLANDC__ #if !defined _MSC_VER && !defined __BORLANDC__
# if defined __cplusplus && __cplusplus >= 201103L # if defined __cplusplus && __cplusplus >= 201103L
# include <cstdint> # include <cstdint>
typedef std::uint32_t uint;
# else # else
# include <stdint.h> # include <stdint.h>
typedef uint32_t uint;
# endif # endif
typedef uint32_t uint;
#else #else
typedef unsigned uint; typedef unsigned uint;
#endif #endif
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment