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 | a212c8b5d0b264f0c7351db7e22b3b1b1178ca8b (patch) | |
tree | 23e5a9713b05284af11ce3c3901fdb02dd31a6a4 /pad.c | |
parent | fd0854ffd71f437c5e7d44b6f60361faf0bd6d15 (diff) | |
download | perl-a212c8b5d0b264f0c7351db7e22b3b1b1178ca8b.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; } /* |