From bf7e47e53208837360a693892652aaf4e6961aa0 Mon Sep 17 00:00:00 2001 From: Marc Hernandez Date: Tue, 18 Jun 2024 15:27:46 -0700 Subject: [PATCH] Update Value class method signature x) Changed generic type parameter from T to U in the Get method. --- logging/Log.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/logging/Log.cs b/logging/Log.cs index c321430..2f6960d 100644 --- a/logging/Log.cs +++ b/logging/Log.cs @@ -36,7 +36,7 @@ N O T D O I N G : public record struct Value( T _val = default, string _exp = "" ) { - static public Value Get( T v, + static public Value Get( U v, [CallerArgumentExpression("fn")] string dbgExp = "" )