Skip to content

Commit e49cd59

Browse files
committed
No reason to have constprop here
1 parent dc7e199 commit e49cd59

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

Project.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
name = "DelaunayTriangulation"
22
uuid = "927a84f5-c5f4-47a5-9785-b46e178433df"
33
authors = ["Daniel VandenHeuvel <[email protected]>"]
4-
version = "0.6.0"
4+
version = "0.6.1"
55

66
[deps]
77
DataStructures = "864edb3b-99cc-5e75-8d2d-829cb0a9cfe8"

src/interfaces/boundary_nodes.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -202,7 +202,7 @@ end
202202
203203
The above will work for any form of `bn` also.
204204
"""
205-
Base.@constprop :aggressive function construct_boundary_map(bn; IntegerType::Type{I}=Int64) where {I}
205+
function construct_boundary_map(bn; IntegerType::Type{I}=Int64) where {I}
206206
if has_multiple_curves(bn)
207207
dict = OrderedDict{I,NTuple{2,I}}()
208208
nc = num_curves(bn)

test/doc_images.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1474,7 +1474,7 @@ end
14741474
ylims!(ax, -100, 100)
14751475

14761476
ax = Axis(fig[1, 2], aspect=1)
1477-
triplot!(ax, smooth_vorn.triangulation, strokewidth=0.2, markersize=4)
1477+
triplot!(ax, smooth_vorn.triangulation, strokewidth=0.2, markersize=4)
14781478
xlims!(ax, -100, 100)
14791479
ylims!(ax, -100, 100)
14801480

0 commit comments

Comments
 (0)