Skip to content

Commit 2a1c7ad

Browse files
authored
Update internal_utils.jl
1 parent a401e86 commit 2a1c7ad

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/internal_utils.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ library, but are used throughout.
55

66
@generated function fieldnames_equal(::Type{T1}, ::Type{T2}) where {T1,T2}
77
# Needs to be a generated function to ensure hardcoded
8-
return static_fieldnames(T1) == static_fieldnames(T2)
8+
return Base.propertynames(T1) == Base.propertynames(T2)
99
end
1010

1111
const SUPERSCRIPT_MAPPING = ('', '¹', '²', '³', '', '', '', '', '', '')

0 commit comments

Comments
 (0)