diff options
author | Dimitri van Heesch <doxygen@gmail.com> | 2021-01-10 12:34:07 (GMT) |
---|---|---|
committer | Dimitri van Heesch <doxygen@gmail.com> | 2021-01-22 20:45:19 (GMT) |
commit | 8c0bb948329448cb88b208480e2048af3638aa45 (patch) | |
tree | c9a0cefd479ca61a81513a4d09d667e7ccbdc3e4 /addon | |
parent | 88b4a1b5f266255cb7ccc364ec8f8628c57ae2e0 (diff) | |
download | Doxygen-8c0bb948329448cb88b208480e2048af3638aa45.zip Doxygen-8c0bb948329448cb88b208480e2048af3638aa45.tar.gz Doxygen-8c0bb948329448cb88b208480e2048af3638aa45.tar.bz2 |
Refactoring: modernize IncludeInfo list
Diffstat (limited to 'addon')
-rw-r--r-- | addon/doxyapp/doxyapp.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/addon/doxyapp/doxyapp.cpp b/addon/doxyapp/doxyapp.cpp index 5fc07be..06c7af3 100644 --- a/addon/doxyapp/doxyapp.cpp +++ b/addon/doxyapp/doxyapp.cpp @@ -179,8 +179,8 @@ static void lookupSymbol(Definition *d) case Definition::TypeFile: { FileDef *fd = dynamic_cast<FileDef*>(d); - printf("Kind: File: #includes %d other files\n", - fd->includeFileList() ? fd->includeFileList()->count() : 0); + printf("Kind: File: #includes %zu other files\n", + fd->includeFileList().size()); } break; case Definition::TypeNamespace: |