From faf1fb207fb6e9a12c864074f8c40d5922d93ff4 Mon Sep 17 00:00:00 2001 From: MarcoFalke <*~=`'#}+{/-|&$^_@721217.xyz> Date: Thu, 23 Nov 2023 18:06:23 +0100 Subject: [PATCH] Fix IWYU for the script_flags fuzz target Also, export script_error.h from interpreter.h, because there should rarely be a case where script_error.h is included without interpreter.h --- src/script/interpreter.h | 16 +++++++++------- src/test/fuzz/script_flags.cpp | 9 +++++++-- 2 files changed, 16 insertions(+), 9 deletions(-) diff --git a/src/script/interpreter.h b/src/script/interpreter.h index ac1013302d4..836c2e7982a 100644 --- a/src/script/interpreter.h +++ b/src/script/interpreter.h @@ -6,21 +6,23 @@ #ifndef BITCOIN_SCRIPT_INTERPRETER_H #define BITCOIN_SCRIPT_INTERPRETER_H +#include #include -#include