On 2011/3/2 Rémy Oudompheng <[email protected]> wrote: > I vote for compactness (at least in .h files). So I'd say my preferred > formatting is
And either /** The maximal number of open foobars */ static int max_open_foobars = 10; or /** The maximal number of open foobars * * This number is used when performing some action. * * @sa override_open_foobars(int) */ static int max_open_foobars = 10; for short descriptions of non-function items. -- Rémy.
