0

I am seeing a lot of pages with std:: stuff:: more stuff when I run my doxygen on my c code.

How do I get rid of this in the config file? Thanks in advance :)

1 Answer 1

2

Those are namespaces which is a feature of C++.
Your code must be having some C++ source files perhaps. They indicate which namespace/scope a class resides in.
Ideally, You should not get rid of those. They are a part of documentation.

# If the HIDE_SCOPE_NAMES tag is set to NO (the default) then Doxygen
# will show members with their full class and namespace scopes in the
# documentation. If set to YES the scope will be hidden.

HIDE_SCOPE_NAMES = NO

Sign up to request clarification or add additional context in comments.

1 Comment

Which item in the config file do I change for that?

Your Answer

By clicking “Post Your Answer”, you agree to our terms of service and acknowledge you have read our privacy policy.

Start asking to get answers

Find the answer to your question by asking.

Ask question

Explore related questions

See similar questions with these tags.