You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This is related to #134, while uint64_t is usually a typedef, bool is a macro define at least in musl and glibc on my machine (maybe it's even standard saying it has to be CPP macro?)
The text was updated successfully, but these errors were encountered:
(and
stdbool.h
contains#define bool _Bool
)more recent
libclang
also treatbool
as a keyword.EDIT: we see something like
in
distilled_lib_1
test case. That field isbool
.This is related to #134, while
uint64_t
is usually a typedef,bool
is a macro define at least in musl andglibc
on my machine (maybe it's even standard saying it has to be CPP macro?)The text was updated successfully, but these errors were encountered: