Browse Source

Minor fix: add readonly

pull/1794/head
Deadlocklogic 2 years ago
parent
commit
866d4f7932
  1. 2
      src/Generator/GeneratorKind.cs

2
src/Generator/GeneratorKind.cs

@ -10,7 +10,7 @@ namespace CppSharp.Generators @@ -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; }

Loading…
Cancel
Save