On 2/23/2023 3:05 AM, Elijah Newren via GitGitGadget wrote: > From: Elijah Newren <newren@xxxxxxxxx> > > We had several C files include cache.h unnecessarily. Replace those > with an include of "git-compat-util.h" instead. Much like the previous > commit, these have all been verified via both ensuring that > gcc -E $SOURCE_FILE | grep '"cache.h"' > found no hits and that > make DEVELOPER=1 ${OBJECT_FILE_FOR_SOURCE_FILE} > successfully compiles without warnings. > diff --git a/t/helper/test-run-command.c b/t/helper/test-run-command.c > index 3ecb830f4a8..67b42ef50eb 100644 > --- a/t/helper/test-run-command.c > +++ b/t/helper/test-run-command.c > @@ -9,8 +9,6 @@ > */ > > #include "test-tool.h" > -#include "git-compat-util.h" > -#include "cache.h" This double-deletion initially caught me off guard, but then I double-checked your first patch where "test-tool.h" was an acceptable first include. Thanks, -Stolee