소스 검색

Fix warnings in Nuklear

Camilla Löwy 8 년 전
부모
커밋
f383f7721c
1개의 변경된 파일2개의 추가작업 그리고 2개의 파일을 삭제
  1. 2 2
      deps/nuklear.h

+ 2 - 2
deps/nuklear.h

@@ -3113,8 +3113,8 @@ template<typename T> struct nk_alignof{struct Big {T x; char c;}; enum {
 #define NK_USHORT_MAX 65535
 #define NK_USHORT_MAX 65535
 #define NK_SINT_MIN (-2147483647)
 #define NK_SINT_MIN (-2147483647)
 #define NK_SINT_MAX 2147483647
 #define NK_SINT_MAX 2147483647
-#define NK_UINT_MIN 0
-#define NK_UINT_MAX 4294967295
+#define NK_UINT_MIN 0u
+#define NK_UINT_MAX 4294967295u
 
 
 /* Make sure correct type size:
 /* Make sure correct type size:
  * This will fire with a negative subscript error if the type sizes
  * This will fire with a negative subscript error if the type sizes