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
In this case, since eCSSPropertyAlias_aa would be identical to eCSSProperty_COUNT, it would become a separate constant rather than an enum item. This is undesired. Ideally, eCSSProperty_COUNT should become a constant, while eCSSPropertyAlias_aa should be an enum item.
I guess we can add something like
/// <div rustbindgen constant></div>
to bindgen to correct this kind of cases.
The text was updated successfully, but these errors were encountered:
In
nsCSSPropertyID
enum, we have something like:In this case, since
eCSSPropertyAlias_aa
would be identical toeCSSProperty_COUNT
, it would become a separate constant rather than an enum item. This is undesired. Ideally,eCSSProperty_COUNT
should become a constant, whileeCSSPropertyAlias_aa
should be an enum item.I guess we can add something like
/// <div rustbindgen constant></div>
to bindgen to correct this kind of cases.
The text was updated successfully, but these errors were encountered: