diff --git a/cmd/checkheader/main.go b/cmd/checkheader/main.go index 94d841bd..eb3590af 100644 --- a/cmd/checkheader/main.go +++ b/cmd/checkheader/main.go @@ -228,7 +228,8 @@ func tryConvertDefineFunc(w io.Writer, l string, i int) bool { return false } if strings.HasPrefix(l, "DEFINEFUNC_VARIADIC") { - // Variadic functions are not supported. + // Variadic functions are not supported. There is not enough + // information in the macro to create use it in writeDefineFunc. return false } i1 := strings.IndexByte(l, '(')