diff options
-rw-r--r-- | src/doxygen.cpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/doxygen.cpp b/src/doxygen.cpp index 9a302c8..ee414e7 100644 --- a/src/doxygen.cpp +++ b/src/doxygen.cpp @@ -32,6 +32,7 @@ #include <algorithm> #include <unordered_map> #include <memory> +#include <cinttypes> #include "version.h" #include "doxygen.h" @@ -11699,7 +11700,7 @@ void generateOutput() } int cacheParam; - msg("lookup cache used %ld/%ld hits=%llu misses=%llu\n", + msg("lookup cache used %zu/%zu hits=%" PRIu64 " misses=%" PRIu64 "\n", Doxygen::lookupCache->size(), Doxygen::lookupCache->capacity(), Doxygen::lookupCache->hits(), |