diff options
author | Steve Hay <SteveHay@planit.com> | 2008-02-20 09:17:37 +0000 |
---|---|---|
committer | Steve Hay <SteveHay@planit.com> | 2008-02-20 09:17:37 +0000 |
commit | f30de7493b87cd1270b4840a21a0c5c0f76598a7 (patch) | |
tree | 4924e4e81e305a34f5039e220c99d1b37fc4d06a /perl.h | |
parent | cb644b64ca9832a7b2f882b0bc45b9ec7fb05e48 (diff) | |
download | perl-f30de7493b87cd1270b4840a21a0c5c0f76598a7.tar.gz |
Fix Win32/VC6 compiler warnings caused by #33231
p4raw-id: //depot/perl@33336
Diffstat (limited to 'perl.h')
-rw-r--r-- | perl.h | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -4637,7 +4637,7 @@ typedef regexp*(CPERLscope(*regdupe_t)) (pTHX_ const regexp* r, CLONE_PARAMS *pa typedef void (*DESTRUCTORFUNC_NOCONTEXT_t) (void*); typedef void (*DESTRUCTORFUNC_t) (pTHX_ void*); -typedef void (*SVFUNC_t) (pTHX_ SV*); +typedef void (*SVFUNC_t) (pTHX_ SV* const); typedef I32 (*SVCOMPARE_t) (pTHX_ SV*, SV*); typedef void (*XSINIT_t) (pTHX); typedef void (*ATEXIT_t) (pTHX_ void*); |