From b118451e301d734e3e783b3acdf871f3f6ea851c Mon Sep 17 00:00:00 2001 From: Ellie Hermaszewska Date: Wed, 6 Nov 2024 01:47:26 +0800 Subject: Move switch statement bodies to their own lines (#5493) * Move switch statement bodies to their own lines * format --------- Co-authored-by: Yong He --- tools/slang-cpp-extractor/node.h | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'tools/slang-cpp-extractor/node.h') diff --git a/tools/slang-cpp-extractor/node.h b/tools/slang-cpp-extractor/node.h index 3590aa5ce..2c15e460d 100644 --- a/tools/slang-cpp-extractor/node.h +++ b/tools/slang-cpp-extractor/node.h @@ -117,7 +117,8 @@ public: { return true; } - default: break; + default: + break; } return false; } -- cgit v1.2.3