From 61738cd5b380a03b51aabdb3a6d6369229d53ee4 Mon Sep 17 00:00:00 2001 From: albert-github Date: Tue, 18 Aug 2020 11:17:54 +0200 Subject: Format for size_t (in e.g. warnings) This one was a bit hidden in conditional compilation (see also #7966). --- src/doxygen.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/doxygen.cpp b/src/doxygen.cpp index 4f6e1cf..aa091f9 100644 --- a/src/doxygen.cpp +++ b/src/doxygen.cpp @@ -9142,7 +9142,7 @@ static void parseFilesMultiThreading(const std::shared_ptr &root) { numThreads = std::thread::hardware_concurrency(); } - msg("Processing input using %lu threads.\n",numThreads); + msg("Processing input using %zu threads.\n",numThreads); ThreadPool threadPool(numThreads); using FutureType = std::vector< std::shared_ptr >; std::vector< std::future< FutureType > > results; -- cgit v0.12