diff options
author | Paul Cristian Sarbu <paul.cristian.sarbu@huawei.com> | 2024-04-29 12:27:59 +0200 |
---|---|---|
committer | Oliver Reiche <oliver.reiche@huawei.com> | 2024-05-02 10:51:04 +0200 |
commit | a8fc6fc51c6c9ef90ae1480f0ff4448d69b0e235 (patch) | |
tree | d2b63497133aa24223c3a114bccdc5a588dea2a4 /src/buildtool/graph_traverser/graph_traverser.hpp | |
parent | 6c0471e40c56a92a704fcdcef9c3e7e7e96af3fa (diff) | |
download | justbuild-a8fc6fc51c6c9ef90ae1480f0ff4448d69b0e235.tar.gz |
Small changes to allow gsl-lite support
The gsl-lite implementation is slightly more picky in terms of
type conversions and constness resolution in initializers,
therefore small changes were needed.
Diffstat (limited to 'src/buildtool/graph_traverser/graph_traverser.hpp')
-rw-r--r-- | src/buildtool/graph_traverser/graph_traverser.hpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/buildtool/graph_traverser/graph_traverser.hpp b/src/buildtool/graph_traverser/graph_traverser.hpp index 776b06b8..5402a149 100644 --- a/src/buildtool/graph_traverser/graph_traverser.hpp +++ b/src/buildtool/graph_traverser/graph_traverser.hpp @@ -626,7 +626,7 @@ class GraphTraverser { if (not output_paths or not remote_api_->RetrieveToPaths( - object_infos, *output_paths, GetLocalApi())) { + object_infos, *output_paths, &(*GetLocalApi()))) { Logger::Log( logger_, LogLevel::Error, "Could not retrieve outputs."); return std::nullopt; |