summaryrefslogtreecommitdiff
path: root/src/buildtool/execution_api/execution_service/server_implementation.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/buildtool/execution_api/execution_service/server_implementation.hpp')
-rw-r--r--src/buildtool/execution_api/execution_service/server_implementation.hpp5
1 files changed, 4 insertions, 1 deletions
diff --git a/src/buildtool/execution_api/execution_service/server_implementation.hpp b/src/buildtool/execution_api/execution_service/server_implementation.hpp
index ecddb8bc..97264fe1 100644
--- a/src/buildtool/execution_api/execution_service/server_implementation.hpp
+++ b/src/buildtool/execution_api/execution_service/server_implementation.hpp
@@ -15,7 +15,9 @@
#ifndef SERVER_IMPLEMENATION_HPP
#define SERVER_IMPLEMENATION_HPP
+#include <cstdint>
#include <fstream>
+#include <optional>
#include <string>
#include "src/buildtool/execution_api/common/api_bundle.hpp"
@@ -51,7 +53,8 @@ class ServerImpl {
auto Run(StorageConfig const& storage_config,
Storage const& storage,
- ApiBundle const& apis) -> bool;
+ ApiBundle const& apis,
+ std::optional<std::uint8_t> op_exponent) -> bool;
~ServerImpl() = default;
private: