From 62474ec98997d2b916c641b071aa06932a1a7519 Mon Sep 17 00:00:00 2001 From: Thomas Johnson Date: Tue, 28 May 2019 21:34:56 +0200 Subject: [PATCH] blobhash.h: Remove extra fallthrough annotation Remove the [[fallthrough]] annotation at the end of the switch statement for Clang compatibility. Fixes: https://tracker.ceph.com/issues/40052 Signed-off-by: Thomas Johnson --- src/include/blobhash.h | 1 - 1 file changed, 1 deletion(-) diff --git a/src/include/blobhash.h b/src/include/blobhash.h index 97f2065ce3a..303892b1325 100644 --- a/src/include/blobhash.h +++ b/src/include/blobhash.h @@ -38,7 +38,6 @@ public: [[fallthrough]]; case 1: acc ^= buf[0]; - [[fallthrough]]; } return H(acc); } -- 2.47.3