michaelrsweet / codedoc

Documentation generator for C/C++ code
https://www.msweet.org/codedoc
Apache License 2.0
48 stars 6 forks source link

namespace => no documentation generation. #7

Closed ArthurSonzogni closed 4 years ago

ArthurSonzogni commented 4 years ago

Hi, I observed this code do not generate any documentation:

namespace {
// My comment
void theFunction()
}

but this one does:

// My comment
void theFunction()

I think codedoc do not handle C++ namespace properly.

michaelrsweet commented 4 years ago

Correct, right now the schema for the XML produced by codedoc supports namespaces but the code parser currently does not... Tracking for a future update...

ArthurSonzogni commented 4 years ago

Thanks! CodeDoc is exactly the tool I am looking for. Thanks for the snap package ;-)

michaelrsweet commented 4 years ago

[master 5fd7dfc] Add support for C++ namespaces (Issue #7)