Skip to content

Commit 24a08f1

Browse files
authored
Merge pull request #119 from JuliaArrays/sd/Vec
add back Vec + Point
2 parents e24e1d8 + ac266dc commit 24a08f1

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

src/FixedSizeArrays.jl

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,8 @@ export FixedArray
1414
export FixedVector
1515
export FixedMatrix
1616
export Mat
17+
export Vec
18+
export Point
1719
export @fsa
1820
export FixedVectorNoTuple
1921

@@ -167,6 +169,7 @@ macro fixed_vector(name, parent)
167169
end
168170

169171

170-
172+
@fixed_vector Vec StaticVector
173+
@fixed_vector Point StaticVector
171174

172175
end

test/fixed_size_arrays.jl

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,9 +4,6 @@ using Base.Test
44

55
import StaticArrays.FixedSizeArrays: @fixed_vector
66

7-
@fixed_vector Vec StaticVector
8-
9-
@fixed_vector Point StaticVector
107

118
@compat const Vec1d = Vec{1, Float64}
129
@compat const Vec2d = Vec{2, Float64}

0 commit comments

Comments
 (0)