From ec7464726f90a8c9536c21a693631a1193f81e19 Mon Sep 17 00:00:00 2001 From: Willy Tarreau Date: Wed, 29 Nov 2017 10:52:29 +0100 Subject: [PATCH] BUILD: checks: don't include server.h server.h needs checks.h since it references the struct check, but depending on the include order it will fail if check.h is included first due to this one including server.h in turn while it doesn't need it. --- include/types/checks.h | 1 - 1 file changed, 1 deletion(-) diff --git a/include/types/checks.h b/include/types/checks.h index b1fe7f337..853a5bf8c 100644 --- a/include/types/checks.h +++ b/include/types/checks.h @@ -22,7 +22,6 @@ #include #include #include -#include /* enum used by check->result. Must remain in this order, as some code uses * result >= CHK_RES_PASSED to declare success.