diff options
author | Rafael Garcia-Suarez <rgarciasuarez@gmail.com> | 2006-08-18 15:46:18 +0000 |
---|---|---|
committer | Rafael Garcia-Suarez <rgarciasuarez@gmail.com> | 2006-08-18 15:46:18 +0000 |
commit | ea5195b749dcc39981859e3ccebcd4b40b26b0bd (patch) | |
tree | a0b129a5ca6eea1ad1709a20dffd30e5262f020b | |
parent | a0c21aa16d2e2969e7469365a39ad48179751e84 (diff) | |
download | perl-ea5195b749dcc39981859e3ccebcd4b40b26b0bd.tar.gz |
A type change that apparently works around a compiler bug
(gcc 4.1.1 on Solaris) (by Robin Barker)
p4raw-id: //depot/perl@28735
-rw-r--r-- | pp_hot.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -417,7 +417,7 @@ PP(pp_defined) register SV* sv; bool defined; const int op_type = PL_op->op_type; - const int is_dor = (op_type == OP_DOR || op_type == OP_DORASSIGN); + const bool is_dor = (op_type == OP_DOR || op_type == OP_DORASSIGN); if (is_dor) { sv = TOPs; |