Skip to content

Commit cd0e0d6

Browse files
authored
1 parent d49710e commit cd0e0d6

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/Common/Results/ResultOfT.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
/// Represents the result of an operation.
55
/// </summary>
66
/// <typeparam name="T">A value associated to the result.</typeparam>
7-
internal readonly struct Result<T>
7+
internal readonly ref struct Result<T>
88
{
99
/// <summary>
1010
/// Gets the value associated with the result.

src/Parser/Line.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ namespace YeSql.Net;
33
/// <summary>
44
/// Represents a line of text from a file.
55
/// </summary>
6-
internal readonly struct Line
6+
internal readonly ref struct Line
77
{
88
/// <summary>
99
/// Gets the number/position of the line.

0 commit comments

Comments
 (0)