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
This commit is contained in:
Christian Göttsche
2020-10-19 12:05:06 +02:00
committed by cgzones
parent 803234a58d
commit 8a08a3209c
7 changed files with 13 additions and 7 deletions

View File

@ -11,6 +11,10 @@ in the source distribution for its full text.
#include "RichString.h"
#include "XUtils.h" // IWYU pragma: keep
#ifndef NDEBUG
#include <stdbool.h>
#endif
struct Object_;
typedef struct Object_ Object;