From 9489d703726102074a92e2276a6a5753a3c83260 Mon Sep 17 00:00:00 2001 From: Atif Aziz Date: Thu, 11 Jul 2024 17:31:47 +0200 Subject: [PATCH] Remove unnecessary "ref" modifier on "ParseResult<>" (#96) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Co-authored-by: Sébastien Ros --- src/Parlot/Fluent/ParseResult.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Parlot/Fluent/ParseResult.cs b/src/Parlot/Fluent/ParseResult.cs index d010b2d..ecce3d0 100644 --- a/src/Parlot/Fluent/ParseResult.cs +++ b/src/Parlot/Fluent/ParseResult.cs @@ -1,6 +1,6 @@ namespace Parlot { - public ref struct ParseResult + public struct ParseResult { public ParseResult(int start, int end, T value) {