[oe-commits] [meta-openembedded] 28/36: msgpack-c: Drop unused patch

git at git.openembedded.org git at git.openembedded.org
Tue Apr 25 12:18:37 UTC 2017


This is an automated email from the git hooks/post-receive script.

martin_jansa pushed a commit to branch master-next
in repository meta-openembedded.

commit 9a9f584d4f5eda32b9732e2df386c56ecab3cbae
Author: Khem Raj <raj.khem at gmail.com>
AuthorDate: Mon Apr 24 10:26:16 2017 -0700

    msgpack-c: Drop unused patch
    
    Signed-off-by: Khem Raj <raj.khem at gmail.com>
---
 .../304ff96d04599401172568d042723ff507e78cc3.patch | 40 ----------------------
 1 file changed, 40 deletions(-)

diff --git a/meta-oe/recipes-devtools/msgpack/msgpack-c/304ff96d04599401172568d042723ff507e78cc3.patch b/meta-oe/recipes-devtools/msgpack/msgpack-c/304ff96d04599401172568d042723ff507e78cc3.patch
deleted file mode 100644
index b8b3d31..0000000
--- a/meta-oe/recipes-devtools/msgpack/msgpack-c/304ff96d04599401172568d042723ff507e78cc3.patch
+++ /dev/null
@@ -1,40 +0,0 @@
-From 304ff96d04599401172568d042723ff507e78cc3 Mon Sep 17 00:00:00 2001
-From: James McCoy <jamessan at debian.org>
-Date: Thu, 13 Apr 2017 11:38:45 -0400
-Subject: [PATCH] Comment the intentional fallthrough to default from
- _fixed_trail_again
-
-GCC 7 added a new diagnostic, -Wimplicit-fallthrough, which is enabled
-with -Wextra that warns about implicitly falling through a case
-statement.
-
-    [  4%] Building C object CMakeFiles/msgpackc-static.dir/src/unpack.c.o
-    /usr/lib/gcc-snapshot/bin/gcc   -I/home/jamessan/src/msgpack-c/. -I/home/jamessan/src/msgpack-c/include -I/home/jamessan/src/msgpack-c/build/include  -g -O2 -fdebug-prefix-map=/home/jamessan/src/msgpack-c=. -specs=/usr/share/dpkg/no-pie-compile.specs -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2   -Wall -Wextra -Werror -g -O3 -o CMakeFiles/msgpackc-static.dir/src/unpack.c.o   -c /home/jamessan/src/msgpack-c/src/unpack.c
-    In file included from /home/jamessan/src/msgpack-c/src/unpack.c:283:0:
-    /home/jamessan/src/msgpack-c/include/msgpack/unpack_template.h: In function 'template_execute':
-    /home/jamessan/src/msgpack-c/include/msgpack/unpack_template.h:238:17: error: this statement may fall through [-Werror=implicit-fallthrough=]
-                     ++p;
-                     ^~~
-    /home/jamessan/src/msgpack-c/include/msgpack/unpack_template.h:240:13: note: here
-                 default:
-                 ^~~~~~~
-    cc1: all warnings being treated as errors
-
-Adding the comment makes it explicit that the fallthrough is
-intentional, so gcc doesn't complain.
----
- include/msgpack/unpack_template.h | 1 +
- 1 file changed, 1 insertion(+)
-
-diff --git a/include/msgpack/unpack_template.h b/include/msgpack/unpack_template.h
-index 8450442..e557bb6 100644
---- a/include/msgpack/unpack_template.h
-+++ b/include/msgpack/unpack_template.h
-@@ -236,6 +236,7 @@ msgpack_unpack_func(int, _execute)(msgpack_unpack_struct(_context)* ctx, const c
- 
-             _fixed_trail_again:
-                 ++p;
-+                // fallthrough
- 
-             default:
-                 if((size_t)(pe - p) < trail) { goto _out; }

-- 
To stop receiving notification emails like this one, please contact
the administrator of this repository.


More information about the Openembedded-commits mailing list