From 29a90d7848d0979117e1ea60279eb269f3ddf1ed Mon Sep 17 00:00:00 2001 From: pybind11_protobuf authors Date: Wed, 22 Jul 2026 23:04:11 -0700 Subject: [PATCH] Automated Code Change PiperOrigin-RevId: 952539488 --- pybind11_protobuf/tests/pass_by_module.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pybind11_protobuf/tests/pass_by_module.cc b/pybind11_protobuf/tests/pass_by_module.cc index ea57fb5..e18611b 100644 --- a/pybind11_protobuf/tests/pass_by_module.cc +++ b/pybind11_protobuf/tests/pass_by_module.cc @@ -172,7 +172,7 @@ PYBIND11_MODULE(pass_by_module, m) { m.def( "std_variant", - [](absl::variant message, int value) { + [](std::variant message, int value) { if (absl::holds_alternative(message)) { return CheckIntMessage(&absl::get(message), value); }