diff options
author | Rafael Garcia-Suarez <rgarciasuarez@gmail.com> | 2005-03-29 06:14:18 +0000 |
---|---|---|
committer | Rafael Garcia-Suarez <rgarciasuarez@gmail.com> | 2005-03-29 06:14:18 +0000 |
commit | 92602f87df8916d7c555c3156516c4b61edfff64 (patch) | |
tree | 23e5a9713b05284af11ce3c3901fdb02dd31a6a4 /pad.c | |
parent | ce6ce26e2027ca2f5acc4da2b650d75af6cd4322 (diff) | |
download | perl-92602f87df8916d7c555c3156516c4b61edfff64.tar.gz |
Don't #ifdef out a return statement
p4raw-id: //depot/perl@24089
Diffstat (limited to 'pad.c')
-rw-r--r-- | pad.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -437,8 +437,8 @@ Perl_pad_alloc(pTHX_ I32 optype, U32 tmptype) #ifdef DEBUG_LEAKING_SCALARS sv->sv_debug_optype = optype; sv->sv_debug_inpad = 1; - return (PADOFFSET)retval; #endif + return (PADOFFSET)retval; } /* |