Michael Haggerty <mhagger@xxxxxxxxxxxx> writes: > On 06/10/2015 07:36 PM, Junio C Hamano wrote: >> Michael Haggerty <mhagger@xxxxxxxxxxxx> writes: >> >>> diff --git a/builtin/add.c b/builtin/add.c >>> index df5135b..aaa9ce4 100644 >>> --- a/builtin/add.c >>> +++ b/builtin/add.c >>> @@ -5,6 +5,7 @@ >>> */ >>> #include "cache.h" >>> #include "builtin.h" >>> +#include "tempfile.h" >>> #include "lockfile.h" >>> #include "dir.h" >>> #include "pathspec.h" >> >> It is a bit sad that all users of lockfile.h has to include >> tempfile.h; even when trying to find out something as basic as the >> name of the file on which the lock is held, they need to look at >> lk->tempfile.filename and that requires inclusion of tempfile.h > ... > Hmmm, currently lockfile.h doesn't include tempfile.h. But I think it is > a good idea for it to do so. (I would have done it already but I thought > it was against project policy.) The project policy is "include what you use, do not rely on others that happen include what you use" with a minor exception for the "must be the first" headers git-compat-util.h (which cache.h and friends include), I think. If it does not include tempfile.h itself, lockfile.h would be at the mercy of the *.c file that includes it to be able to see the struct it uses; if *.c does not include tempfile.h before lockfile.h, it would break. -- To unsubscribe from this list: send the line "unsubscribe git" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html