Skip to content

Commit 07831e2

Browse files
committed
Remove syntax deprecations for abstract
1 parent 4899f9b commit 07831e2

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/affine.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
abstract AbstractAffineMap <: Transformation
1+
@compat abstract type AbstractAffineMap <: Transformation end
22

33
"""
44
Translation(v) <: AbstractAffineMap

src/core.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ transformation on the correct data types by overloading the call method, and
1212
usually would have the corresponding inverse transformation defined by `Base.inv()`.
1313
Efficient compositions can optionally be defined by `compose()` (equivalently `∘`).
1414
"""
15-
abstract Transformation
15+
@compat abstract type Transformation end
1616

1717
"""
1818
The `IdentityTransformation` is a singleton `Transformation` that returns the

0 commit comments

Comments
 (0)