From 697733a435922084c4559263ad6991f50f487ca7 Mon Sep 17 00:00:00 2001 From: "Ralf W. Grosse-Kunstleve" Date: Fri, 2 Aug 2024 09:50:14 -0700 Subject: [PATCH] Add a `dummy_function()` in proto_cast_util.h (functional no-op). The only purpose of this change is to trigger testing. PiperOrigin-RevId: 658818894 --- pybind11_protobuf/proto_cast_util.h | 2 ++ 1 file changed, 2 insertions(+) diff --git a/pybind11_protobuf/proto_cast_util.h b/pybind11_protobuf/proto_cast_util.h index f2ff440..aa4afd2 100644 --- a/pybind11_protobuf/proto_cast_util.h +++ b/pybind11_protobuf/proto_cast_util.h @@ -29,6 +29,8 @@ namespace pybind11_protobuf { +inline void dummy_function() {} + // Strips ".proto" or ".protodevel" from the end of a filename. // Similar to // https://github.com/protocolbuffers/protobuf/blob/b375d010bf57a6d673125330ec47f6e6a7e03f5c/src/google/protobuf/compiler/code_generator.cc#L129-L136