From 8a08a3209c093f9b1137ec5879d3804026b0df6e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Christian=20G=C3=B6ttsche?= Date: Mon, 19 Oct 2020 12:05:06 +0200 Subject: IWYU update - Add Settings forward declaration in Process.h - Add assert.h include in XUitls.c - Add conditional stdbool.h include in Object.h - Drop unneeded stddef.h include in Richstring.c - Drop unneeded unistd.h include in Process.h - Drop unneeded string.h include in linux/Platform.c - Use String_eq to avoid string.h include in Action.c - Improve script to run custom iwyu version --- Object.h | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'Object.h') diff --git a/Object.h b/Object.h index 2d3fd3c4..caa3e919 100644 --- a/Object.h +++ b/Object.h @@ -11,6 +11,10 @@ in the source distribution for its full text. #include "RichString.h" #include "XUtils.h" // IWYU pragma: keep +#ifndef NDEBUG +#include +#endif + struct Object_; typedef struct Object_ Object; -- cgit v1.2.3