From 35352054a9c0e46a844bf5307b4f2f08be642283 Mon Sep 17 00:00:00 2001 From: Ulya Trofimovich Date: Wed, 2 Aug 2017 21:43:36 +0100 Subject: [PATCH] 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 --- re2c/src/adfa/action.h | 1 + re2c/src/util/hash32.h | 1 + 2 files changed, 2 insertions(+) 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 -- 2.50.1