Browse Source

🔧 Update Doxygen config (#4898)

I noticed that anything inside an unnamed namespace wasn't being documented by Doxygen. This commit ensures that all functions are properly documented by Doxygen.
pull/4899/head
Cesar Canassa 4 years ago committed by GitHub
parent
commit
a91ec16196
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 6
      doxygen.config

6
doxygen.config

@ -10,7 +10,7 @@ FILE_PATTERNS = *.c \
*.inc \
*.md
RECURSIVE = YES
EXCLUDE = ./build ./3rdParty ./CMake
EXCLUDE = ./build ./3rdParty ./CMake ./cmake-build-debug
GENERATE_LATEX = NO
WARNINGS = YES
@ -31,4 +31,6 @@ CALLER_GRAPH = YES
# Not all files are documented yet
EXTRACT_ALL = YES
EXTRACT_PRIVATE = YES
EXTRACT_STATIC = YES
EXTRACT_ANON_NSPACES = YES

Loading…
Cancel
Save