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 a4725b0 + 3b752f6 commit 410096fCopy full SHA for 410096f
1 file changed
src/ConstructionBase.jl
@@ -97,7 +97,7 @@ setproperties(obj::Tuple , patch::NamedTuple ) = setproperties_tuple(obj
97
@generated function check_patch_fields_exist(obj, patch)
98
fnames = fieldnames(obj)
99
pnames = fieldnames(patch)
100
- pnames ⊆ fnames ? :(nothing) : :(throw(ArgumentError($("Failed to assign fields $pnames to object with fields $fnames."))))
+ pnames ⊆ fnames ? :(Base.nothing) : :(throw(ArgumentError($("Failed to assign fields $pnames to object with fields $fnames."))))
101
end
102
103
function setproperties(obj::NamedTuple{fields}, patch::NamedTuple{fields}) where {fields}
0 commit comments