2023-10-12 11:31:01 -07:00
|
|
|
// go/fastpythonproto
|
|
|
|
|
|
|
|
|
|
namespace google {
|
|
|
|
|
namespace protobuf {
|
|
|
|
|
namespace python {
|
|
|
|
|
|
2024-03-25 19:51:23 -07:00
|
|
|
// This exists solely to cause a build/link time error when more than one of
|
|
|
|
|
// :use_upb_protos, :use_fast_cpp_protos and :use_pure_python are specified
|
|
|
|
|
// in a build.;
|
2023-10-12 11:31:01 -07:00
|
|
|
|
|
|
|
|
extern "C" {
|
|
|
|
|
|
|
|
|
|
// MUST match link_error_pure_python.cc's function signature.
|
|
|
|
|
|
|
|
|
|
__attribute__((noinline)) __attribute__((optnone)) int
|
2024-03-25 19:51:23 -07:00
|
|
|
go_SLASH_build_deps_on_multiple_python_proto_backends() {
|
2023-10-12 11:31:01 -07:00
|
|
|
return 0;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
} // extern "C"
|
|
|
|
|
|
|
|
|
|
} // namespace python
|
|
|
|
|
} // namespace protobuf
|
|
|
|
|
} // namespace google
|