We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 15058b1 + 91ec962 commit 662297fCopy full SHA for 662297f
REQUIRE
@@ -1,2 +1,2 @@
1
julia 0.5
2
-Compat 0.9.5
+Compat 0.17.0
src/query.jl
@@ -1,6 +1,6 @@
### Format registry infrastructure
-abstract OS
3
-abstract Unix <: OS
+@compat abstract type OS end
+@compat abstract type Unix <: OS end
4
immutable Windows <: OS end
5
immutable OSX <: Unix end
6
immutable Linux <: Unix end
@@ -214,7 +214,7 @@ function magic_cmp(t::Tuple, p::Pair)
214
end
215
216
217
-abstract Formatted{F<:DataFormat} # A specific file or stream
+@compat abstract type Formatted{F<:DataFormat} end # A specific file or stream
218
219
"""
220
`File(fmt, filename)` indicates that `filename` is a file of known
0 commit comments