Skip to content

Commit 3f08475

Browse files
committed
Fixes from rebase
1 parent 0361fd1 commit 3f08475

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

Src/ILGPU/IR/Serialization/BinaryIRWriter.cs

+1-1
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ public void Write(string tag, string value) =>
5151
writer.Write(value);
5252

5353
/// <inheritdoc/>
54-
public void Write<T>(T value)
54+
public void Write<T>(string tag, T value)
5555
where T : unmanaged, Enum =>
5656
writer.Write(Convert.ToInt32(value));
5757

Src/ILGPU/IR/Serialization/IIRWriter.cs

+1-1
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@ public partial interface IIRWriter : IDisposable
6060
/// <param name="value">
6161
/// The value to serialize.
6262
/// </param>
63-
void Write<T>(T value)
63+
void Write<T>(string tag, T value)
6464
where T : unmanaged, Enum;
6565
}
6666
}

0 commit comments

Comments
 (0)