Skip to content

Commit d749ee1

Browse files
nraynaudvisr
authored andcommitted
regenerate the julia code
1 parent 3dc1f7e commit d749ee1

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

src/libgeos_api.jl

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2308,7 +2308,7 @@ function GEOSGeom_destroy(g)
23082308
end
23092309

23102310
function GEOSGeomType(g)
2311-
unsafe_string(@ccall(libgeos.GEOSGeomType(g::Ptr{GEOSGeometry})::Cstring))
2311+
transform_c_string(@ccall(libgeos.GEOSGeomType(g::Ptr{GEOSGeometry})::Cstring))
23122312
end
23132313

23142314
function GEOSGeomTypeId(g)
@@ -2454,7 +2454,7 @@ function GEOSisValid(g)
24542454
end
24552455

24562456
function GEOSisValidReason(g)
2457-
unsafe_string(@ccall(libgeos.GEOSisValidReason(g::Ptr{GEOSGeometry})::Cstring))
2457+
transform_c_string(@ccall(libgeos.GEOSisValidReason(g::Ptr{GEOSGeometry})::Cstring))
24582458
end
24592459

24602460
function GEOSisValidDetail(g, flags, reason, location)
@@ -3057,7 +3057,7 @@ function GEOSRelatePattern(g1, g2, pat)
30573057
end
30583058

30593059
function GEOSRelate(g1, g2)
3060-
unsafe_string(
3060+
transform_c_string(
30613061
@ccall(libgeos.GEOSRelate(g1::Ptr{GEOSGeometry}, g2::Ptr{GEOSGeometry})::Cstring)
30623062
)
30633063
end
@@ -3067,7 +3067,7 @@ function GEOSRelatePatternMatch(mat, pat)
30673067
end
30683068

30693069
function GEOSRelateBoundaryNodeRule(g1, g2, bnr)
3070-
unsafe_string(
3070+
transform_c_string(
30713071
@ccall(
30723072
libgeos.GEOSRelateBoundaryNodeRule(
30733073
g1::Ptr{GEOSGeometry},

0 commit comments

Comments
 (0)