Skip to content

Commit

Permalink
Minor fix: add readonly
Browse files Browse the repository at this point in the history
  • Loading branch information
deadlocklogic committed Nov 11, 2023
1 parent 8d32ad8 commit 866d4f7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Generator/GeneratorKind.cs
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ namespace CppSharp.Generators
/// </summary>
public class GeneratorKind : IEquatable<GeneratorKind>
{
private static HashSet<string> s_registeredIDSet = new();
private static readonly HashSet<string> s_registeredIDSet = new();

public string ID { get; }

Expand Down

0 comments on commit 866d4f7

Please sign in to comment.