From c8d4d4fc650a0433491c085a94ea4ace462130f4 Mon Sep 17 00:00:00 2001 From: Will Hawkins Date: Wed, 27 May 2026 13:22:59 -0400 Subject: [PATCH] compiler: Remove Too-Early Instatiation Reference Signed-off-by: Will Hawkins --- Sources/P4Runtime/Statements.swift | 6 ------ 1 file changed, 6 deletions(-) diff --git a/Sources/P4Runtime/Statements.swift b/Sources/P4Runtime/Statements.swift index 268c284..6063c33 100644 --- a/Sources/P4Runtime/Statements.swift +++ b/Sources/P4Runtime/Statements.swift @@ -133,9 +133,3 @@ extension ApplyStatement: EvaluatableStatement { return (ControlFlow.Next, execution) } } - -extension Instantiation: EvaluatableStatement { - public func evaluate(execution: ProgramExecution) -> (ControlFlow, ProgramExecution) { - return (ControlFlow.Next, execution) - } -}