소스 검색

Use correct _MSC_VER check for stdbool.h

Tom Lötzsch 5 년 전
부모
커밋
54a89b0d66
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. 1 1
      arch/ua_architecture_definitions.h

+ 1 - 1
arch/ua_architecture_definitions.h

@@ -20,7 +20,7 @@
 #ifdef UNDER_CE
 # include "stdint.h"
 #endif
-#if !defined(_MSC_VER) || _MSC_VER >= 1600
+#if !defined(_MSC_VER) || _MSC_VER >= 1800
 # include <stdint.h>
 # include <stdbool.h> /* C99 Boolean */
 #else