Skip to content

Commit

Permalink
Merge pull request #32 from tkoolen/staticarrays-0.5
Browse files Browse the repository at this point in the history
Update to StaticArrays 0.5
  • Loading branch information
tkoolen authored Apr 29, 2017
2 parents 4ed8d6e + 27e09ba commit 31ae3ca
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion REQUIRE
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
julia 0.6-
StaticArrays 0.4.0 0.5-
StaticArrays 0.5
4 changes: 2 additions & 2 deletions src/core_types.jl
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
"""
abstract type Rotation{N,T} <: StaticMatrix{T}
abstract type Rotation{N,T} <: StaticMatrix{N,N,T}
An abstract type representing `N`-dimensional rotations. More abstractly, they represent
unitary (orthogonal) `N`×`N` matrices.
"""
abstract type Rotation{N,T} <: StaticMatrix{T} end
abstract type Rotation{N,T} <: StaticMatrix{N,N,T} end

Base.@pure StaticArrays.Size{N}(::Type{Rotation{N}}) = Size(N,N)
Base.@pure StaticArrays.Size{N,T}(::Type{Rotation{N,T}}) = Size(N,N)
Expand Down

0 comments on commit 31ae3ca

Please sign in to comment.