From 7eb1d08b19465f338ef7d1e0befc24fedea1c399 Mon Sep 17 00:00:00 2001 From: Viktor Stojanovic Date: Wed, 12 Aug 2026 17:27:42 +0200 Subject: [PATCH 1/4] Add copyright & license notice --- src/IResult.cs | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/src/IResult.cs b/src/IResult.cs index 25b7d68..e010ec1 100644 --- a/src/IResult.cs +++ b/src/IResult.cs @@ -1,4 +1,7 @@ -namespace UnmanagedResult; +// Copyright (c) 2026 Viktor Stojanović. All rights reserved. +// Licensed under the MIT License. See LICENSE.txt in the project root for license information. + +namespace UnmanagedResult; public interface IResult where TValue : unmanaged From a5ac292dda60523c057e5937753216bdc8c491d8 Mon Sep 17 00:00:00 2001 From: Viktor Stojanovic Date: Wed, 12 Aug 2026 17:28:13 +0200 Subject: [PATCH 2/4] Add copyright & license notice --- src/Result.cs | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/src/Result.cs b/src/Result.cs index 0a09b62..625f973 100644 --- a/src/Result.cs +++ b/src/Result.cs @@ -1,4 +1,7 @@ -using System; +// Copyright (c) 2026 Viktor Stojanović. All rights reserved. +// Licensed under the MIT License. See LICENSE.txt in the project root for license information. + +using System; namespace UnmanagedResult; From db6426e60239c32469397495621654c74a3a375b Mon Sep 17 00:00:00 2001 From: Viktor Stojanovic Date: Wed, 12 Aug 2026 17:28:41 +0200 Subject: [PATCH 3/4] Add copyright & license notice --- src/IError.cs | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/src/IError.cs b/src/IError.cs index ba8f097..43feb96 100644 --- a/src/IError.cs +++ b/src/IError.cs @@ -1,4 +1,7 @@ -namespace UnmanagedResult; +// Copyright (c) 2026 Viktor Stojanović. All rights reserved. +// Licensed under the MIT License. See LICENSE.txt in the project root for license information. + +namespace UnmanagedResult; public interface IError { From e49fa848e127bea56e8a0054962088171ff2ab28 Mon Sep 17 00:00:00 2001 From: Viktor Stojanovic Date: Wed, 12 Aug 2026 17:29:11 +0200 Subject: [PATCH 4/4] Add copyright & license notice --- src/Error.cs | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/src/Error.cs b/src/Error.cs index 85a660f..927ffc6 100644 --- a/src/Error.cs +++ b/src/Error.cs @@ -1,4 +1,7 @@ -using System; +// Copyright (c) 2026 Viktor Stojanović. All rights reserved. +// Licensed under the MIT License. See LICENSE.txt in the project root for license information. + +using System; namespace UnmanagedResult;