From ad7efdb1e15f796a70e76632c08e2d8571804ca7 Mon Sep 17 00:00:00 2001 From: pybind11_protobuf authors Date: Fri, 31 Jul 2026 21:56:43 -0700 Subject: [PATCH] Automated Code Change PiperOrigin-RevId: 957486739 --- 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); }