Skip to content

Commit 101823d

Browse files
authored
Merge pull request #79 from JuliaGraphics/teh/functorize
Remove atsign-functorize
2 parents f0ab840 + 47064da commit 101823d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/ColorVectorSpace.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ _nan{T<:AbstractFloat,C<:AbstractRGB}(::Type{T}, ::Type{C}) = (x = convert(T, Na
5151
_nan{T<:AbstractFloat,C<:TransparentRGB}(::Type{T}, ::Type{C}) = (x = convert(T, NaN); C(x,x,x,x))
5252

5353
## Generic algorithms
54-
mapreduce(f, op::Union{typeof(@functorize(&)), typeof(@functorize(|))}, a::MathTypes) = f(a) # ambiguity
54+
mapreduce(f, op::Union{typeof(&), typeof(|)}, a::MathTypes) = f(a) # ambiguity
5555
mapreduce(f, op, a::MathTypes) = f(a)
5656
Base.r_promote(::typeof(+), c::MathTypes) = mapc(x->Base.r_promote(+, x), c)
5757

0 commit comments

Comments
 (0)