From 0f5262917fab34b44b43f63946fdf6bb0621875a Mon Sep 17 00:00:00 2001 From: Benny Baumann Date: Sat, 19 Sep 2020 13:55:23 +0200 Subject: Make all required includes explicit Information as seen by IWYU 0.12 + clang 9 on Linux --- IncSet.c | 12 +++++++++--- 1 file changed, 9 insertions(+), 3 deletions(-) (limited to 'IncSet.c') diff --git a/IncSet.c b/IncSet.c index 3534f857..0d1aecf5 100644 --- a/IncSet.c +++ b/IncSet.c @@ -5,14 +5,20 @@ Released under the GNU GPLv2, see the COPYING file in the source distribution for its full text. */ +#include "config.h" // IWYU pragma: keep + #include "IncSet.h" -#include "ListItem.h" -#include "CRT.h" -#include "XUtils.h" +#include #include #include +#include "CRT.h" +#include "ListItem.h" +#include "Object.h" +#include "ProvideCurses.h" +#include "XUtils.h" + static void IncMode_reset(IncMode* mode) { mode->index = 0; -- cgit v1.2.3