From 6ad3b9fb2ab8d05bd842c079df0b351aeae45c20 Mon Sep 17 00:00:00 2001 From: Ben Kurtovic Date: Fri, 23 Jun 2017 01:55:26 -0400 Subject: [PATCH] inttypes.h doesn't exist on Windows, so try using stdint.h --- mwparserfromhell/parser/ctokenizer/avl_tree.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mwparserfromhell/parser/ctokenizer/avl_tree.h b/mwparserfromhell/parser/ctokenizer/avl_tree.h index 86e2c75..f4869a6 100644 --- a/mwparserfromhell/parser/ctokenizer/avl_tree.h +++ b/mwparserfromhell/parser/ctokenizer/avl_tree.h @@ -22,7 +22,7 @@ #define _AVL_TREE_H_ #include -#include /* for uintptr_t */ +#include #ifdef __GNUC__ # define AVL_INLINE inline __attribute__((always_inline))