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 --- source/slang/slang-ir-lower-bit-cast.cpp | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) (limited to 'source/slang/slang-ir-lower-bit-cast.cpp') diff --git a/source/slang/slang-ir-lower-bit-cast.cpp b/source/slang/slang-ir-lower-bit-cast.cpp index aef4a6dfc..450ad8ac9 100644 --- a/source/slang/slang-ir-lower-bit-cast.cpp +++ b/source/slang/slang-ir-lower-bit-cast.cpp @@ -33,8 +33,11 @@ struct BitCastLoweringContext { switch (inst->getOp()) { - case kIROp_BitCast: processBitCast(inst); break; - default: break; + case kIROp_BitCast: + processBitCast(inst); + break; + default: + break; } } -- cgit v1.2.3