Skip to content

Commit ba3fe48

Browse files
committed
Fixed several macros on 0.6, see JuliaLang/julia#19587
1 parent 73108f9 commit ba3fe48

File tree

3 files changed

+8
-8
lines changed

3 files changed

+8
-8
lines changed

README.md

+2
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,8 @@
1414
julia> import ArchGDAL; const AG = ArchGDAL
1515
ArchGDAL
1616

17+
julia> import Base.read
18+
1719
julia> function read(f, filename)
1820
return AG.registerdrivers() do
1921
AG.read(filename) do dataset

appveyor.yml

-2
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,5 @@
11
environment:
22
matrix:
3-
- JULIAVERSION: "julialang/bin/winnt/x86/0.5/julia-0.5-latest-win32.exe"
4-
- JULIAVERSION: "julialang/bin/winnt/x64/0.5/julia-0.5-latest-win64.exe"
53
- JULIAVERSION: "julialang/bin/winnt/x86/0.6/julia-0.6-latest-win32.exe"
64
- JULIAVERSION: "julialang/bin/winnt/x64/0.6/julia-0.6-latest-win64.exe"
75
- JULIAVERSION: "julianightlies/bin/winnt/x86/julia-latest-win32.exe"

src/utils.jl

+6-6
Original file line numberDiff line numberDiff line change
@@ -3,38 +3,38 @@ macro gdal(args...)
33
@assert args[1].head == :(::)
44
fhead = (args[1].args[1], GDAL.libgdal)
55
returntype = args[1].args[2]
6-
argtypes = Expr(:tuple, [a.args[2] for a in args[2:end]]...)
7-
args = [a.args[1] for a in args[2:end]]
6+
argtypes = Expr(:tuple, [esc(a.args[2]) for a in args[2:end]]...)
7+
args = [esc(a.args[1]) for a in args[2:end]]
88
return quote ccall($fhead, $returntype, $argtypes, $(args...)) end
99
end
1010

1111
macro ogrerr(code, message)
1212
return quote
13-
if $code != GDAL.OGRERR_NONE
13+
if $(esc(code)) != GDAL.OGRERR_NONE
1414
error($message)
1515
end
1616
end
1717
end
1818

1919
macro cplerr(code, message)
2020
return quote
21-
if $code != GDAL.CE_None
21+
if $(esc(code)) != GDAL.CE_None
2222
error($message)
2323
end
2424
end
2525
end
2626

2727
macro cplwarn(code, message)
2828
return quote
29-
if $code != GDAL.CE_None
29+
if $(esc(code)) != GDAL.CE_None
3030
warn($message)
3131
end
3232
end
3333
end
3434

3535
macro cplprogress(progressfunc)
3636
return quote
37-
cfunction($progressfunc,Cint,(Cdouble,Cstring,Ptr{Void}))
37+
cfunction($(esc(progressfunc)),Cint,(Cdouble,Cstring,Ptr{Void}))
3838
end
3939
end
4040

0 commit comments

Comments
 (0)