From: Ulya Trofimovich Date: Wed, 2 Aug 2017 20:43:36 +0000 (+0100) Subject: Fixed headers that were not self-contained. X-Git-Tag: 1.0~18 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=35352054a9c0e46a844bf5307b4f2f08be642283;p=re2c Fixed headers that were not self-contained. Used the following command to find errors: for h in $(find src/ -name '*.h*'); do echo "CHECKING $h"; g++ -I. -c $h -o foo.o; done --- diff --git a/re2c/src/adfa/action.h b/re2c/src/adfa/action.h index 7f95a3ca..5e7762be 100644 --- a/re2c/src/adfa/action.h +++ b/re2c/src/adfa/action.h @@ -5,6 +5,7 @@ #include #include "src/code/label.h" +#include "src/dfa/tcmd.h" #include "src/util/c99_stdint.h" #include "src/util/uniq_vector.h" diff --git a/re2c/src/util/hash32.h b/re2c/src/util/hash32.h index 3ee612af..87d7cee0 100644 --- a/re2c/src/util/hash32.h +++ b/re2c/src/util/hash32.h @@ -1,6 +1,7 @@ #ifndef _RE2C_UTIL_HASH32_ #define _RE2C_UTIL_HASH32_ +#include #include "src/util/c99_stdint.h" namespace re2c