I have documented a struct with doxygen syntax.
//! This struct contains some info
typedef struct myInfo
{
int variable1; //!< This is a very long text about my variable. This
//!< is a very long text about my variable.
} myInfo;
When I generate the html/chm output, the variable description contains one "<": "This is a very long text about my variable. This < is a very long text about my variable."
I'm using the current doxygen 1.8.11 and I have set MULTILINE_CPP_IS_BRIEF = NO.
According to the doxygen homepage (see "Putting documentation after members") this should be working, or am I missing something?
Try this:
//! This struct contains some info
typedef struct myInfo
{
int variable1; /**< This is a very long text about my variable. This
is a very long text about my variable.*/
} myInfo;
Then you will get a really "very long" text.
If you want a multi-line comment, put a \n
at the end of each line.
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With