tags:

views:

29

answers:

1

Hi guys, I'm using doxygen for commenting code. There is, for example, two files:

test1.cpp:

/**
* @namespace SomeNamespace
* @brief Describe it
*/
namespace SomeNamespace
{
   ...
}

test2.cpp:

// Put comment about namespace again?
namespace SomeNamespace
{
   ...
}
A: 

When you comment same stuff in different files, comments get concatenated in Doxygen output. I experience it at least when commenting both function declaration and function body.

mouviciel