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.
1 parent 17e9d99 commit 3376d5dCopy full SHA for 3376d5d
src/ImageSharp/Metadata/Profiles/Exif/Tags/ExifTag.cs
@@ -30,7 +30,7 @@ public abstract partial class ExifTag : IEquatable<ExifTag>
30
/// </summary>
31
/// <param name="left">The first <see cref="ExifTag"/> to compare.</param>
32
/// <param name="right"> The second <see cref="ExifTag"/> to compare.</param>
33
- public static bool operator !=(ExifTag left, ExifTag right) => !(left == right);
+ public static bool operator !=(ExifTag? left, ExifTag? right) => !(left == right);
34
35
/// <inheritdoc/>
36
public override bool Equals(object? obj)
0 commit comments