We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents b722b07 + 4a86822 commit 1961d66Copy full SHA for 1961d66
YamlDotNet/Core/TagName.cs
@@ -86,6 +86,6 @@ public override int GetHashCode()
86
return !(left == right);
87
}
88
89
- public static implicit operator TagName(string value) => value == null ? Empty : new TagName(value);
+ public static implicit operator TagName(string? value) => value == null ? Empty : new TagName(value);
90
91
0 commit comments