diff options
author | Luka Paulic <luka.paulic@sartura.hr> | 2019-04-10 14:02:38 +0200 |
---|---|---|
committer | Luka Paulic <luka.paulic@sartura.hr> | 2019-04-10 14:14:48 +0200 |
commit | a74f6105022b644eddc78dace6ec59c60c695caa (patch) | |
tree | 422a80a55c72a177515324a9eae188787a8391df /libs/protobuf-c | |
parent | 17b1a3fcfeaa82331ab959c1776491dea83d0871 (diff) |
protobuf-c: fix x86 build fail
Signed-off-by: Luka Paulic <luka.paulic@sartura.hr>
Diffstat (limited to 'libs/protobuf-c')
-rw-r--r-- | libs/protobuf-c/patches/001-t-generated-code2-cxx-generate-packed-data-fix.patch | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/libs/protobuf-c/patches/001-t-generated-code2-cxx-generate-packed-data-fix.patch b/libs/protobuf-c/patches/001-t-generated-code2-cxx-generate-packed-data-fix.patch new file mode 100644 index 000000000..2d83cec59 --- /dev/null +++ b/libs/protobuf-c/patches/001-t-generated-code2-cxx-generate-packed-data-fix.patch @@ -0,0 +1,13 @@ +Index: protobuf-c-1.3.1/t/generated-code2/cxx-generate-packed-data.cc +=================================================================== +--- protobuf-c-1.3.1.orig/t/generated-code2/cxx-generate-packed-data.cc ++++ protobuf-c-1.3.1/t/generated-code2/cxx-generate-packed-data.cc +@@ -998,7 +998,7 @@ static void dump_test_packed_repeated_en + static void dump_test_unknown_fields (void) + { + EmptyMess mess; +- const google::protobuf::Message::Reflection *reflection = mess.GetReflection(); ++ const google::protobuf::Reflection *reflection = mess.GetReflection(); + google::protobuf::UnknownFieldSet *fs = reflection->MutableUnknownFields(&mess); + + #if GOOGLE_PROTOBUF_VERSION >= 2001000 |