From 0491fb9a1eb77e7b9ebee9cc449110de7af70112 Mon Sep 17 00:00:00 2001 From: Liao Pingfang Date: Mon, 13 Jul 2020 19:56:42 +0800 Subject: [PATCH] common: Remove the superfluous break Remove the superfuous break, as there is a 'return' before it. Signed-off-by: Liao Pingfang --- src/common/shunique_lock.h | 1 - 1 file changed, 1 deletion(-) diff --git a/src/common/shunique_lock.h b/src/common/shunique_lock.h index 2a8da953c13b..5f809e83a8b5 100644 --- a/src/common/shunique_lock.h +++ b/src/common/shunique_lock.h @@ -104,7 +104,6 @@ public: switch (o) { case ownership::none: return; - break; case ownership::unique: m->unlock(); break; -- 2.47.3