Junio C Hamano wrote:

> It seems to apply well on the tip of jk/gcc-function-attributes.
>
>  - This macro is not about "git" at all, so I'll edit the patch to
>    call it GCC_ATTR_SENTINEL before applying.

Would naming it something like LAST_ARG_MUST_BE_NULL instead make
sense?  That way, if some other compiler gains a different syntax for
the same annotation, it would be possible to do

        #if defined(__GNUC__) && __GNUC__ >= 4
        # define LAST_ARG_MUST_BE_NULL __attribute__((sentinel))
        #elif defined(_MSC_VER) && _MSC_VER > 27
        # define LAST_ARG_MUST_BE_NULL __declspec(lastargnull)
        #else
        # define LAST_ARG_MUST_BE_NULL
        #endif
--
To unsubscribe from this list: send the line "unsubscribe git" in
the body of a message to majord...@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html

Reply via email to