Skip to content

Commit

Permalink
Merge pull request dagurval#12 from ufobat/master
Browse files Browse the repository at this point in the history
removed duplicated `is export`
  • Loading branch information
dagurval authored Dec 3, 2018
2 parents 2eead96 + 005cd4f commit 4512a2c
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions lib/GD/Raw.pm
Original file line number Diff line number Diff line change
Expand Up @@ -186,7 +186,7 @@ sub gdImageBmp(gdImageStruct $im, OpaquePointer $f, int32)
is native(LIB) is export { ... }

sub gdImageArc (gdImagePtr $im, int32 $cx, int32 $cy, int32 $w, int32 $h,
int32 $s, int32 $e, int32 $color) is export
int32 $s, int32 $e, int32 $color)
# returns void
is native(LIB) is export { * }

Expand All @@ -205,7 +205,7 @@ sub gdImageCopyResampled(gdImageStruct $dst, gdImageStruct $src,
int32 $dstX, int32 $dstY, int32 $srcX, int32 $srcY, int32 $dstW, int32 $dstH, int32 $srcW, int32 $srcH)
is native(LIB) is export { ... }

sub gdImageSetAntiAliased (gdImagePtr $im, int32 $c) is export
sub gdImageSetAntiAliased (gdImagePtr $im, int32 $c)
#returns void
is native(LIB) is export { * }

Expand Down Expand Up @@ -237,7 +237,7 @@ sub gdImageGetPixel(gdImagePtr $im, int32 $x, int32 $y)
returns int32
is native(LIB) is export { * }

sub gdImageLine (gdImagePtr $im, int32 $x1, int32 $y1, int32 $x2, int32 $y2, int32 $color) is export
sub gdImageLine (gdImagePtr $im, int32 $x1, int32 $y1, int32 $x2, int32 $y2, int32 $color)
#returns void
is native(LIB) is export { * }

Expand Down

0 comments on commit 4512a2c

Please sign in to comment.