From 0b84951f8b4da40261e34de38e035ccf24092d2b Mon Sep 17 00:00:00 2001 From: Will Hawkins Date: Sat, 7 Mar 2026 01:14:13 -0500 Subject: [PATCH] Fix String Interpolation Warning Signed-off-by: Will Hawkins --- Sources/Common/ProgramTypes.swift | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Sources/Common/ProgramTypes.swift b/Sources/Common/ProgramTypes.swift index 027067f..ccd1cd9 100644 --- a/Sources/Common/ProgramTypes.swift +++ b/Sources/Common/ProgramTypes.swift @@ -64,7 +64,7 @@ public class Variable: TypedIdentifier { } public override var description: String { - return "\(super.description) = \(value) \(constant ? "(constant)" : "")" + return "\(super.description) = \(value?.description ?? "Missing Value") \(constant ? "(constant)" : "")" } public var value_type: P4Value? {