]> git.feebdaed.xyz Git - 0xmirror/grpc.git/commitdiff
Sanity fix (#41202)
authorCraig Tiller <ctiller@google.com>
Mon, 8 Dec 2025 22:42:10 +0000 (14:42 -0800)
committerCopybara-Service <copybara-worker@google.com>
Mon, 8 Dec 2025 22:44:39 +0000 (14:44 -0800)
<!--

If you know who should review your pull request, please assign it to that
person, otherwise the pull request would get assigned randomly.

If your pull request is for a specific language, please add the appropriate
lang label.

-->

Closes #41202

COPYBARA_INTEGRATE_REVIEW=https://github.com/grpc/grpc/pull/41202 from ctiller:san aab326f7d099518fe2d08dd953b36bbe71d218dc
PiperOrigin-RevId: 841921474

src/core/lib/surface/call_utils.h
test/core/call/call_utils_test.cc
test/core/transport/chttp2/settings_timeout_manager_test.cc

index e9180213023192fff58b0f3fda3d8153f858867b..60927995d740811f607132428ba52306277cd06a 100644 (file)
 #include "src/core/util/grpc_check.h"
 #include "src/core/util/upb_utils.h"
 #include "src/proto/grpc/channelz/v2/promise.upb.h"
+#include "upb/mem/arena.h"
 #include "absl/status/status.h"
 #include "absl/strings/str_cat.h"
 #include "absl/strings/string_view.h"
-#include "upb/mem/arena.h"
 
 namespace grpc_core {
 
@@ -337,7 +337,6 @@ class WaitForCqEndOp {
   struct Invalid {};
   using State = std::variant<NotStarted, Started, Invalid>;
 
- public:
   WaitForCqEndOp(bool is_closure, void* tag, grpc_error_handle error,
                  grpc_completion_queue* cq)
       : state_{NotStarted{is_closure, tag, std::move(error), cq}} {}
index f208058fbb3b25d3506c8c2ddc8a39dd029fe5eb..c7aadd915760930aceefa0fba1d63ee7b21b61f9 100644 (file)
@@ -22,8 +22,8 @@
 #include "src/core/util/upb_utils.h"
 #include "src/proto/grpc/channelz/v2/promise.upb.h"
 #include "src/proto/grpc/channelz/v2/property_list.upb.h"
-#include "gtest/gtest.h"
 #include "upb/mem/arena.hpp"
+#include "gtest/gtest.h"
 
 namespace grpc_core {
 
index 8978174908cb9eedf90d7a62a2af9501c29f5b45..cf9e5b077c389099ec9d3dc364b29170834a8866 100644 (file)
@@ -463,5 +463,3 @@ int main(int argc, char** argv) {
   grpc_shutdown();
   return ret;
 }
-
-