add missing headers for new toolchain (#41)

These are necessary for compiling with Ubuntu 24.04 default toolchain/boost.
This commit is contained in:
胡玮文
2025-03-03 07:57:02 +08:00
committed by GitHub
parent cd564a239a
commit 309a258ac2
12 changed files with 14 additions and 1 deletions

View File

@@ -2,6 +2,7 @@
#include <boost/filesystem/operations.hpp>
#include <folly/experimental/symbolizer/Symbolizer.h>
#include <fstream>
#include <sys/stat.h>
#include "common/monitor/Recorder.h"

View File

@@ -1,5 +1,7 @@
#include "storage/worker/CheckWorker.h"
#include <fstream>
#include "common/monitor/Recorder.h"
#include "common/utils/Duration.h"
#include "common/utils/UtcTime.h"

View File

@@ -1,6 +1,7 @@
#include "storage/worker/DumpWorker.h"
#include <gperftools/profiler.h>
#include <fstream>
#include <memory>
#include <sys/times.h>