Skip to content

Commit 99fac6e

Browse files
committed
Cleaning up
1 parent 0e30cd3 commit 99fac6e

File tree

3 files changed

+2
-2
lines changed

3 files changed

+2
-2
lines changed

Project.toml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@ version = "1.0.1"
66
ConstructionBase = "187b0558-2788-49d3-abe0-74a17ed4e7c9"
77
Future = "9fa8497b-333b-5362-9e8d-4d0656e87820"
88
MacroTools = "1914dd2f-81c6-5fcd-8719-6d5c9610ff09"
9+
StaticArraysCore = "1e83bf80-4336-4d27-bf5d-d5a4f845583c"
910

1011
[compat]
1112
ConstructionBase = "0.1, 1.0"

src/Setfield.jl

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,5 +26,4 @@ for n in names(Setfield, all=true)
2626
@eval Base.show(io::IO, l::$T) = _show(io, nothing, l)
2727
end
2828
end
29-
3029
end

src/setindex.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,5 +21,5 @@ Base.@propagate_inbounds function setindex(d0::AbstractDict, v, k)
2121
return d
2222
end
2323

24-
setindex(a::StaticArrays.StaticArray, args...) =
24+
setindex(a::StaticArraysCore.StaticArray, args...) =
2525
Base.setindex(a, args...)

0 commit comments

Comments
 (0)