From d2cfde74b9b3c4c9d3a45cf43fae22b9aa0543fb Mon Sep 17 00:00:00 2001 From: Nicolas Noble Date: Thu, 12 Feb 2015 17:08:09 -0800 Subject: [PATCH] Forgot to add the test file. --- test/build/protobuf.cc | 10 ++++++++++ 1 file changed, 10 insertions(+) create mode 100644 test/build/protobuf.cc diff --git a/test/build/protobuf.cc b/test/build/protobuf.cc new file mode 100644 index 00000000000..59ead111a66 --- /dev/null +++ b/test/build/protobuf.cc @@ -0,0 +1,10 @@ +#include +#include + +bool protobuf_test(const google::protobuf::MethodDescriptor *method) { + return method->client_streaming() || method->server_streaming(); +} + +int main() { + return 0; +}