From 261e27dea1f844a6e43cda489f4497cbd5dc480f Mon Sep 17 00:00:00 2001 From: Benjamin Franzke Date: Thu, 13 Feb 2020 20:13:18 +0100 Subject: Specifiy protobuf syntax version To avoid the following warning: [libprotobuf WARNING google/protobuf/compiler/parser.cc:562] No syntax specified for the proto file: mumble.proto. Please use 'syntax = "proto2";' or 'syntax = "proto3";' to specify a syntax version. (Defaulted to proto2 syntax.) --- src/mumble.proto | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/mumble.proto b/src/mumble.proto index 16d54f5..aa12840 100644 --- a/src/mumble.proto +++ b/src/mumble.proto @@ -1,6 +1,8 @@ /* NOTE: Do not replace this file directly with future upstream Mumble.proto. We derive the message id from the position in this file. */ +syntax = "proto2"; + package MumbleProto; option optimize_for = SPEED; -- cgit