fix missing includes

This commit is contained in:
Jonathan 2022-08-12 02:42:52 -04:00
parent ea38e5eeb7
commit 8b9c1bd784
2 changed files with 2 additions and 0 deletions

View File

@ -28,6 +28,7 @@
#include <mutex> #include <mutex>
#include <fmt/ostream.h> #include <fmt/ostream.h>
#include <fmt/chrono.h> #include <fmt/chrono.h>
#include <string>
#include <common/log.hh> #include <common/log.hh>
#include <common/threads.hh> #include <common/threads.hh>

View File

@ -175,6 +175,7 @@ struct percent_clock
}; };
#include <list> #include <list>
#include <atomic>
// base class intended to be inherited for stat trackers; // base class intended to be inherited for stat trackers;
// they will automatically print the results at the end, // they will automatically print the results at the end,