Skip to content
This repository has been archived by the owner on May 4, 2019. It is now read-only.

Commit

Permalink
Don't define iscomplex
Browse files Browse the repository at this point in the history
This was deprecated in 0.2, and after JuliaLang/julia@562d895
it stops the package from loading
  • Loading branch information
simonster committed Jul 13, 2014
1 parent 157b34c commit e0e4a70
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/predicates.jl
@@ -1,6 +1,6 @@
numeric_predicates = (:(Base.iseven), :(Base.ispow2), :(Base.isfinite), :(Base.isprime), :(Base.isinf), :(Base.isodd))

type_predicates = (:(Base.isinteger), :(Base.isreal), :(Base.iscomplex))
type_predicates = (:(Base.isinteger), :(Base.isreal))

container_predicates = (:(Base.isempty),)

Expand Down

0 comments on commit e0e4a70

Please sign in to comment.