From 8bc1f4d65a8fcb196793755e89ee7c876ce161ba Mon Sep 17 00:00:00 2001 From: pybind11_protobuf authors Date: Mon, 15 Jun 2026 20:21:46 -0700 Subject: [PATCH] Automated Code Change PiperOrigin-RevId: 932823466 --- 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); }