From 1883ab29cb33f442e03b3578d82a4d15bebbdbd1 Mon Sep 17 00:00:00 2001 From: Wilson Snyder Date: Wed, 15 Apr 2020 17:36:48 -0400 Subject: [PATCH] clang-format 10.0 forward compatibility. No functional change. --- src/V3Ast.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/V3Ast.h b/src/V3Ast.h index 3f461b777..3380517c0 100644 --- a/src/V3Ast.h +++ b/src/V3Ast.h @@ -273,17 +273,17 @@ public: switch (other.m_e) { case VEdgeType::ET_NEGEDGE: // FALLTHRU case VEdgeType::ET_LOWEDGE: return true; - default: {} + default:; } break; case VEdgeType::ET_NEGEDGE: switch (other.m_e) { case VEdgeType::ET_POSEDGE: // FALLTHRU case VEdgeType::ET_HIGHEDGE: return true; - default: {} + default:; } break; - default: {} + default:; } return false; }