I'm using Doxygen for my (C++) project.
I have some functions which are self-explanatory, for which I don't want to add any comment or explanation - but which I do want appearing as part of the documentation. Now, this does happen as doxygen's default behavior if I don't write a /** */
block, but then - I get a warning in Doxygen's output:
warning: Member foo() of namespace bar is not documented.
How can I tell doxygen that it's fine that there's no documentation for such functions?
Additional information:
- I have
EXTRACT_ALL = NO
- I'm using Doxygen 1.8.13 on Devuan ASCII (~= Debian Stretch)