浏览代码

Define bool as unsigned char (1 byte) on old MSVC versions

Julius Pfrommer 6 年之前
父节点
当前提交
a88e2bf995
共有 1 个文件被更改,包括 1 次插入1 次删除
  1. 1 1
      include/ua_config.h.in

+ 1 - 1
include/ua_config.h.in

@@ -75,7 +75,7 @@ extern "C" {
 #else
 # include "ms_stdint.h"
 # if !defined(__bool_true_false_are_defined)
-#  define bool short
+#  define bool unsigned char
 #  define true 1
 #  define false 0
 #  define __bool_true_false_are_defined