From a8561db936e6339e1d6d2a8de4c9ac033cd56310 Mon Sep 17 00:00:00 2001 From: Willy Tarreau Date: Fri, 6 Mar 2020 18:40:31 +0100 Subject: [PATCH] BUILD: buffer: types/{ring.h,checks.h} should include buf.h, not buffer.h buffer.h relies on proto/activity because it contains some code and not just type definitions. It must not be included from types files. It should probably also be split in two if it starts to include a proto. This causes some circular dependencies at other places. --- include/types/checks.h | 2 +- include/types/ring.h | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/include/types/checks.h b/include/types/checks.h index 03d2305774..73650480c1 100644 --- a/include/types/checks.h +++ b/include/types/checks.h @@ -18,7 +18,7 @@ #include #include #include -#include +#include #include #include diff --git a/include/types/ring.h b/include/types/ring.h index 86c507ff82..5f08271711 100644 --- a/include/types/ring.h +++ b/include/types/ring.h @@ -22,7 +22,7 @@ #ifndef _TYPES_RING_H #define _TYPES_RING_H -#include +#include #include #include #include -- 2.47.3