diff options
author | Andy Lester <andy@petdance.com> | 2005-11-10 16:47:00 -0600 |
---|---|---|
committer | Steve Peters <steve@fisharerojo.org> | 2005-11-11 04:55:56 +0000 |
commit | 0bcc34c2b0b0cb62c0df3d5e562b779fb96595ba (patch) | |
tree | be9a7c05ed82c609d0018f1f3ac8395cdefc28a7 /cop.h | |
parent | 50c1ac04356af5f8e8f967db7ed083187aacb550 (diff) | |
download | perl-0bcc34c2b0b0cb62c0df3d5e562b779fb96595ba.tar.gz |
Const & local: Special Victims Unit
Message-ID: <20051111044700.GA24161@petdance.com>
p4raw-id: //depot/perl@26082
Diffstat (limited to 'cop.h')
-rw-r--r-- | cop.h | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -741,9 +741,9 @@ See L<perlcall/Lightweight Callbacks>. #define PUSH_MULTICALL(the_cv) \ STMT_START { \ - CV *_nOnclAshIngNamE_ = the_cv; \ - CV *cv = _nOnclAshIngNamE_; \ - AV* padlist = CvPADLIST(cv); \ + CV * const _nOnclAshIngNamE_ = the_cv; \ + CV * const cv = _nOnclAshIngNamE_; \ + AV * const padlist = CvPADLIST(cv); \ ENTER; \ multicall_oldcatch = CATCH_GET; \ SAVETMPS; SAVEVPTR(PL_op); \ |