diff options
author | Oliver Reiche <oliver.reiche@huawei.com> | 2025-06-23 12:19:43 +0200 |
---|---|---|
committer | Oliver Reiche <oliver.reiche@huawei.com> | 2025-06-24 12:56:57 +0200 |
commit | c498bf564fa5d781c176f65c7a9a2d43376a81f1 (patch) | |
tree | eb6a1378fc2ded735fd3bb24e8c52152f448029b /src/buildtool/execution_api/common | |
parent | 95f230b3a755f66183ce5c27e929ed6ae3838977 (diff) | |
download | justbuild-c498bf564fa5d781c176f65c7a9a2d43376a81f1.tar.gz |
ExecutionAPI: Support output_symlinks in response
Diffstat (limited to 'src/buildtool/execution_api/common')
-rw-r--r-- | src/buildtool/execution_api/common/execution_response.hpp | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/src/buildtool/execution_api/common/execution_response.hpp b/src/buildtool/execution_api/common/execution_response.hpp index 552e52a6..a77c40cb 100644 --- a/src/buildtool/execution_api/common/execution_response.hpp +++ b/src/buildtool/execution_api/common/execution_response.hpp @@ -20,7 +20,6 @@ #include <optional> #include <string> #include <unordered_map> -#include <unordered_set> #include "gsl/gsl" #include "src/buildtool/common/artifact.hpp" @@ -35,7 +34,6 @@ class IExecutionResponse { using Ptr = std::unique_ptr<IExecutionResponse>; using ArtifactInfos = std::unordered_map<std::string, Artifact::ObjectInfo>; // set of paths found in output_directory_symlinks list of the action result - using DirSymlinks = std::unordered_set<std::string>; enum class StatusCode : std::uint8_t { Failed, Success }; |