From f65d756bff8d4c5cbc15bd0322a2ae8e6b896a21 Mon Sep 17 00:00:00 2001 From: Ellie Hermaszewska Date: Tue, 29 Oct 2024 14:49:26 +0800 Subject: format * format * Minor test fixes * enable checking cpp format in ci --- source/slang/slang-ir-entry-point-pass.cpp | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) (limited to 'source/slang/slang-ir-entry-point-pass.cpp') diff --git a/source/slang/slang-ir-entry-point-pass.cpp b/source/slang/slang-ir-entry-point-pass.cpp index 64988cb81..4057fc2f4 100644 --- a/source/slang/slang-ir-entry-point-pass.cpp +++ b/source/slang/slang-ir-entry-point-pass.cpp @@ -39,11 +39,13 @@ void PerEntryPointPass::processModule(IRModule* module) } } -void PerEntryPointPass::processEntryPoint(IRFunc* entryPointFunc, IREntryPointDecoration* entryPointDecoration) +void PerEntryPointPass::processEntryPoint( + IRFunc* entryPointFunc, + IREntryPointDecoration* entryPointDecoration) { m_entryPoint.func = entryPointFunc; m_entryPoint.decoration = entryPointDecoration; processEntryPointImpl(m_entryPoint); } -} +} // namespace Slang -- cgit v1.2.3