mirror of
https://github.com/ceph/ceph
synced 2025-02-24 11:37:37 +00:00
crimson: include headers if necessary
we should not rely on seastar or other headers to do this. if we use fmt or std functions, we should include corresponding header(s). Signed-off-by: Kefu Chai <kchai@redhat.com>
This commit is contained in:
parent
ebb7f32482
commit
0c60abf5ba
@ -1,6 +1,7 @@
|
||||
#include "cyan_store.h"
|
||||
|
||||
#include <fmt/format.h>
|
||||
#include <fmt/ostream.h>
|
||||
|
||||
#include "common/safe_io.h"
|
||||
|
||||
|
@ -7,6 +7,7 @@
|
||||
#include <iostream>
|
||||
|
||||
#include <seastar/core/app-template.hh>
|
||||
#include <seastar/core/print.hh>
|
||||
#include <seastar/core/thread.hh>
|
||||
|
||||
#include "common/ceph_argparse.h"
|
||||
|
@ -3,7 +3,8 @@
|
||||
#include <boost/iterator/counting_iterator.hpp>
|
||||
#include <boost/range/join.hpp>
|
||||
#include <boost/smart_ptr/make_local_shared.hpp>
|
||||
|
||||
#include <fmt/format.h>
|
||||
#include <fmt/ostream.h>
|
||||
#include "common/pick_address.h"
|
||||
#include "messages/MOSDBeacon.h"
|
||||
#include "messages/MOSDBoot.h"
|
||||
|
@ -1,5 +1,7 @@
|
||||
#include "osd_meta.h"
|
||||
|
||||
#include <fmt/format.h>
|
||||
|
||||
#include "crimson/os/cyan_collection.h"
|
||||
#include "crimson/os/cyan_store.h"
|
||||
#include "crimson/os/Transaction.h"
|
||||
|
@ -1,4 +1,5 @@
|
||||
#include <chrono>
|
||||
#include <iostream>
|
||||
#include <numeric>
|
||||
#include <seastar/core/app-template.hh>
|
||||
#include "crimson/thread/ThreadPool.h"
|
||||
|
Loading…
Reference in New Issue
Block a user