Skip to content

Commit

Permalink
Format for size_t (in e.g. warnings)
Browse files Browse the repository at this point in the history
This one was a bit hidden in conditional compilation (see also #7966).
  • Loading branch information
albert-github committed Aug 18, 2020
1 parent 1efb1b2 commit 61738cd
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/doxygen.cpp
Expand Up @@ -9142,7 +9142,7 @@ static void parseFilesMultiThreading(const std::shared_ptr<Entry> &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<Entry> >;
std::vector< std::future< FutureType > > results;
Expand Down

0 comments on commit 61738cd

Please sign in to comment.