Skip to content

Commit f4a1077

Browse files
committed
fix dual type declarations, again
1 parent 5600628 commit f4a1077

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/GeometryOps.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ export TraitTarget, Manifold, Planar, Spherical, Geodesic, apply, applyreduce, f
2121
using GeoInterface
2222
using LinearAlgebra, Statistics
2323

24-
using GeometryBasics.StaticArrays
24+
using StaticArrays
2525

2626
import Tables, DataAPI
2727
import StaticArrays

src/methods/clipping/clipping_processor.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -337,7 +337,7 @@ function foreach_pair_of_maybe_intersecting_edges_in_order(
337337
tree_a = NaturalIndexing.NaturalIndex(edges_a)
338338
tree_b = NaturalIndexing.NaturalIndex(edges_b)
339339

340-
last_a_idx::Int = 0
340+
last_a_idx = 0
341341

342342
SpatialTreeInterface.dual_depth_first_search(Extents.intersects, tree_a, tree_b) do a_edge_idx, b_edge_idx
343343
a1t, a2t = edges_a[a_edge_idx].geom

0 commit comments

Comments
 (0)