Explorar o código

Use correct _MSC_VER check for stdbool.h

Tom Lötzsch %!s(int64=5) %!d(string=hai) anos
pai
achega
54a89b0d66
Modificáronse 1 ficheiros con 1 adicións e 1 borrados
  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