From cac16451acd24b4697e4c05722703f027e214baf Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Tau=20G=C3=A4rtli?= Date: Fri, 24 Jan 2025 13:42:43 +0100 Subject: [PATCH] Enable nullable --- Funcky.SourceGenerator/ApplyGenerator.cs | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/Funcky.SourceGenerator/ApplyGenerator.cs b/Funcky.SourceGenerator/ApplyGenerator.cs index 67e5c245..eaced7c4 100644 --- a/Funcky.SourceGenerator/ApplyGenerator.cs +++ b/Funcky.SourceGenerator/ApplyGenerator.cs @@ -18,6 +18,8 @@ public void Initialize(IncrementalGeneratorInitializationContext context) private static string GenerateApplyExtensions() => $$""" + #nullable enable + namespace Funcky.Extensions; public static partial class FuncExtensions @@ -28,6 +30,8 @@ public static partial class FuncExtensions private static string GenerateApplyFunctions() => $$""" + #nullable enable + namespace Funcky; public static partial class Functional