Open
Description
Summary
VaList::arg::<bool>()
should work.
Description
According to <stdbool.h> false
is 0
and true
is 1
. As long as our encoding of bool
is the same, we should allow VaList::arg::<bool>()
. Since we take care of types smaller than an int
in the codegen, this should work.
Related to: #44930