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 enums or structs where the doxygen comment is like
the_thing, /// < Documentation for the_thing
something_else, /// < Documentation for something_else
bindgen will put the documentation meant for the_thing on something_else, since it doesn't know about the meaning of the < character, resulting in wrong documentation.
Source code using /**< */ style comments seems to not suffer this problem:
the_thing, /**< Documentation for the_thing (works properly) */
...
The text was updated successfully, but these errors were encountered:
In enums or structs where the doxygen comment is like
bindgen will put the documentation meant for
the_thing
onsomething_else
, since it doesn't know about the meaning of the<
character, resulting in wrong documentation.Source code using
/**< */
style comments seems to not suffer this problem:The text was updated successfully, but these errors were encountered: