From cfbd06af3b57c18e89b079914d30843896253fc2 Mon Sep 17 00:00:00 2001 From: whispers Date: Fri, 13 Mar 2026 14:13:53 -0400 Subject: [PATCH] impl(testing_util): include algorithm header `google/cloud/testing_util/command_line_parsing.cc` appears to use `std::transform` without including ``. We encountered this in Nixpkgs; you can see some example build logs at the bottom of https://hydra.nixos.org/build/323365915/log. I'm not *quite* sure of the root cause of this error appearing now (it may be related to GCC 15), but I believe this is nonetheless a correct change. --- google/cloud/testing_util/command_line_parsing.cc | 1 + 1 file changed, 1 insertion(+) diff --git a/google/cloud/testing_util/command_line_parsing.cc b/google/cloud/testing_util/command_line_parsing.cc index 330d6d402b04b..92d90842a6a91 100644 --- a/google/cloud/testing_util/command_line_parsing.cc +++ b/google/cloud/testing_util/command_line_parsing.cc @@ -16,6 +16,7 @@ #include "google/cloud/internal/throw_delegate.h" #include "absl/strings/match.h" #include "absl/time/time.h" +#include #include #include #include