From: Thomas Johnson Date: Tue, 28 May 2019 19:34:56 +0000 (+0200) Subject: blobhash.h: Remove extra fallthrough annotation X-Git-Tag: v15.1.0~2615^2 X-Git-Url: http://git-server-git.apps.pok.os.sepia.ceph.com/?a=commitdiff_plain;h=refs%2Fpull%2F28270%2Fhead;p=ceph.git 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 --- diff --git a/src/include/blobhash.h b/src/include/blobhash.h index 97f2065ce3a6..303892b13251 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); }