diff options
author | Paul Cristian Sarbu <paul.cristian.sarbu@huawei.com> | 2024-11-07 11:41:12 +0100 |
---|---|---|
committer | Maksim Denisov <denisov.maksim@huawei.com> | 2024-11-14 14:23:05 +0100 |
commit | e24b0a8cbebee4e5dc9fa3c071753acbeb1bdde0 (patch) | |
tree | b6159c1d644a4141fec0935e17c44b84d6e961f8 /src/buildtool/execution_api/execution_service/operation_cache.hpp | |
parent | 300adf3d40cf9e87b277e6922b571c3938d41655 (diff) | |
download | justbuild-e24b0a8cbebee4e5dc9fa3c071753acbeb1bdde0.tar.gz |
execution_api/execution_service: Implement IWYU suggestions
Diffstat (limited to 'src/buildtool/execution_api/execution_service/operation_cache.hpp')
-rw-r--r-- | src/buildtool/execution_api/execution_service/operation_cache.hpp | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/src/buildtool/execution_api/execution_service/operation_cache.hpp b/src/buildtool/execution_api/execution_service/operation_cache.hpp index 1d51854e..38500286 100644 --- a/src/buildtool/execution_api/execution_service/operation_cache.hpp +++ b/src/buildtool/execution_api/execution_service/operation_cache.hpp @@ -15,19 +15,17 @@ #ifndef OPERATION_CACHE_HPP #define OPERATION_CACHE_HPP -#include <atomic> #include <cstddef> #include <cstdint> +#include <functional> #include <mutex> #include <optional> #include <shared_mutex> #include <string> -#include <thread> #include <unordered_map> -#include <vector> +#include <utility> #include "google/longrunning/operations.pb.h" -#include "google/protobuf/timestamp.pb.h" class OperationCache final { using Operation = ::google::longrunning::Operation; |