diff options
author | Max Kellermann <max.kellermann@ionos.com> | 2024-10-04 21:25:00 +0200 |
---|---|---|
committer | Max Kellermann <max.kellermann@ionos.com> | 2024-11-04 22:31:06 +0100 |
commit | 9615c04d7d8e57d116581453759454c581354041 (patch) | |
tree | ce470592175a3cef5156475b08f33000e3dff5ef /src/common/Thread.h | |
parent | common/Journald: add missing include (diff) | |
download | ceph-9615c04d7d8e57d116581453759454c581354041.tar.xz ceph-9615c04d7d8e57d116581453759454c581354041.zip |
common/Thread: include cleanup
This header uses `std::string`, but not `std::system_error`.
Signed-off-by: Max Kellermann <max.kellermann@ionos.com>
Diffstat (limited to 'src/common/Thread.h')
-rw-r--r-- | src/common/Thread.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/common/Thread.h b/src/common/Thread.h index d3892c1b36b..4bb871a2712 100644 --- a/src/common/Thread.h +++ b/src/common/Thread.h @@ -17,8 +17,8 @@ #define CEPH_THREAD_H #include <functional> +#include <string> #include <string_view> -#include <system_error> #include <thread> #include <cstring> |