diff options
Diffstat (limited to 'src/buildtool/execution_api/remote/bazel/bazel_response.cpp')
-rw-r--r-- | src/buildtool/execution_api/remote/bazel/bazel_response.cpp | 9 |
1 files changed, 0 insertions, 9 deletions
diff --git a/src/buildtool/execution_api/remote/bazel/bazel_response.cpp b/src/buildtool/execution_api/remote/bazel/bazel_response.cpp index e11a3b7f..5d826a1b 100644 --- a/src/buildtool/execution_api/remote/bazel/bazel_response.cpp +++ b/src/buildtool/execution_api/remote/bazel/bazel_response.cpp @@ -88,15 +88,6 @@ auto BazelResponse::Artifacts() noexcept &artifacts_); // explicit type needed for expected } -auto BazelResponse::DirectorySymlinks() noexcept - -> expected<gsl::not_null<DirSymlinks const*>, std::string> { - if (auto error_msg = Populate()) { - return unexpected{*std::move(error_msg)}; - } - return gsl::not_null<DirSymlinks const*>( - &dir_symlinks_); // explicit type needed for expected -} - auto BazelResponse::HasUpwardsSymlinks() noexcept -> expected<bool, std::string> { if (auto error_msg = Populate()) { |