diff options
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; |