File tree Expand file tree Collapse file tree 1 file changed +2
-0
lines changed
src/Thinktecture.Runtime.Extensions.SourceGenerator/CodeAnalysis/SmartEnums Expand file tree Collapse file tree 1 file changed +2
-0
lines changed Original file line number Diff line number Diff line change @@ -111,6 +111,7 @@ public bool Equals(EnumSourceGeneratorState? other)
111
111
return TypeFullyQualified == other . TypeFullyQualified
112
112
&& IsValidatable == other . IsValidatable
113
113
&& HasCreateInvalidImplementation == other . HasCreateInvalidImplementation
114
+ && HasKeyComparerImplementation == other . HasKeyComparerImplementation
114
115
&& IsReferenceType == other . IsReferenceType
115
116
&& IsAbstract == other . IsAbstract
116
117
&& AttributeInfo . Equals ( other . AttributeInfo )
@@ -129,6 +130,7 @@ public override int GetHashCode()
129
130
var hashCode = TypeFullyQualified . GetHashCode ( ) ;
130
131
hashCode = ( hashCode * 397 ) ^ IsValidatable . GetHashCode ( ) ;
131
132
hashCode = ( hashCode * 397 ) ^ HasCreateInvalidImplementation . GetHashCode ( ) ;
133
+ hashCode = ( hashCode * 397 ) ^ HasKeyComparerImplementation . GetHashCode ( ) ;
132
134
hashCode = ( hashCode * 397 ) ^ IsReferenceType . GetHashCode ( ) ;
133
135
hashCode = ( hashCode * 397 ) ^ IsAbstract . GetHashCode ( ) ;
134
136
hashCode = ( hashCode * 397 ) ^ AttributeInfo . GetHashCode ( ) ;
You can’t perform that action at this time.
0 commit comments