commit caef918abd0a9425b3942df3859c7bea7b8986e0
parent ce116392201f9f96b3e8519eb5c82c03144d0109
Author: Jakub Vít <jakub.vit@gmail.com>
Date: Sun, 4 Sep 2016 19:44:39 +0100
Change definition of UINT16_MAX macro (#84)
Change UINT16_MAX from `~(utf8proc_uint16_t)0` to fixed value `65535U` to prevent weird behaviour in complex expressions.
Diffstat:
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/utf8proc.h b/utf8proc.h
@@ -134,7 +134,7 @@ extern "C" {
#endif
#ifndef UINT16_MAX
-# define UINT16_MAX ~(utf8proc_uint16_t)0
+# define UINT16_MAX 65535U
#endif
/**