Please do not pay attention to the strangeness of the following minimal example (I would have to make it much larger to justify why I am doing this):
File test.cpp:
#include "ah" int main() { return 0; }
Ah file:
namespace N {
Bh file:
/// \file
Doxygen 1.8.11 complains:
warning: Member GUARD (macro definition) of file ah is not documented.
The first thing interesting is this warning indicates ah . Secondly, if one of the commented lines is deleted, the warning disappears. What's going on here?
source share