My teams C-code guidelines write that it'd be better to place a '<' in a comment like shown below:
#define MAX_PACK_ITEM_NUM 50 /**< max number of item */
I wonder, what is the real use of this '<' ?
|
It's a way for |
|||
|
|
|
As others have replied, this is probably a comment that is meant for doxygen. When parsing comments, doxygen have some special rules:
Documentation is mostly placed above the documented item, e.g. a function. But in some cases such as a |
|||
|
|
|
It is a doxygen syntax for commenting members after declaration/definition. |
|||
|
|
|
I assume your team uses some automated documentation tool which looks for |
|||||
|
[doxygen]. – Keith Thompson Sep 7 '11 at 8:08