From 833979a5c91f5ab286188f824aaef0e85f5125be Mon Sep 17 00:00:00 2001 From: Will Hawkins Date: Mon, 27 Apr 2026 09:15:31 -0400 Subject: [PATCH] Make Formatter Happy Signed-off-by: Will Hawkins --- Sources/P4Compiler/Declarations.swift | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Sources/P4Compiler/Declarations.swift b/Sources/P4Compiler/Declarations.swift index 018cab9..f0a8e11 100644 --- a/Sources/P4Compiler/Declarations.swift +++ b/Sources/P4Compiler/Declarations.swift @@ -30,7 +30,8 @@ extension Declaration: CompilableDeclaration { let declaration_compilers: [String: CompilableDeclaration.Type] = [ "function_declaration": FunctionDeclaration.self, "control_declaration": Control.self, - "type_declaration": P4Struct.self, /// ASSUME: Type declarations are struct declarations. + "type_declaration": P4Struct.self, + /// ASSUME: Type declarations are struct declarations. "extern_declaration": ExternDeclaration.self, ]