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
Allow multi word types and typedef'd names as underlying enum types
Our previous attempt only worked with names like `short` or `unsigned`, but not
with e.g. `unsigned short` or `uint32_t`. This patch rectifies that.
Note that unlike clang we currently don't allow CV qualifiers for underlying
types. Since these are ignored by clang anyway, we don't expect to see too much
code in the wild making use of that feature however.
0 commit comments