Parcourir la source

Use correct _MSC_VER check for stdbool.h

Tom Lötzsch il y a 5 ans
Parent
commit
54a89b0d66
1 fichiers modifiés avec 1 ajouts et 1 suppressions
  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