Skip to content

Commit

Permalink
Update comment on variadic functions
Browse files Browse the repository at this point in the history
  • Loading branch information
qmuntal authored Dec 10, 2024
1 parent 17584dd commit c7f7a47
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion cmd/checkheader/main.go
Original file line number Diff line number Diff line change
Expand Up @@ -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, '(')
Expand Down

0 comments on commit c7f7a47

Please sign in to comment.