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
First of all, thank you so much for your work on this project. It really is a game changer for C++ docs.
Now, I'm struggling a bit to explain this problem concisely, but I think an example will make it very clear.
C++/Doxygen code:
/** * Check if there is a message in the queue, and return its length. * This can be used to appropriately size the buffer for a subsequent call to read(). * * @return The length of a pending message. This excludes the header -- a return value of 0 indicates a message * with a header and an empty body. @b std::nullopt is returned if there is no message to read.*/
std::optional<size_t> getPendingMessageSize();
(this is inside a class, in case it makes any difference)
First of all, thank you so much for your work on this project. It really is a game changer for C++ docs.
Now, I'm struggling a bit to explain this problem concisely, but I think an example will make it very clear.
C++/Doxygen code:
(this is inside a class, in case it makes any difference)
RST code:
HTML output:
FWIW, the relevant part of the Doxygen XML looks like this:
This excludes the header <ndash/> a return value of 0 indicates a message with a header and an empty body.
The text was updated successfully, but these errors were encountered: