summaryrefslogtreecommitdiff
path: root/proto.h
diff options
context:
space:
mode:
authorAndy Lester <andy@petdance.com>2006-03-13 03:31:52 -0600
committerRafael Garcia-Suarez <rgarciasuarez@gmail.com>2006-03-14 08:35:24 +0000
commitef519e132d81262cbafdc318e417dce9db1d88a9 (patch)
treea86a0128b208190f32eabd4f54afd7c027e6a239 /proto.h
parent1d230ada0b2ff8ef3af3370141f10c3315abf450 (diff)
downloadperl-ef519e132d81262cbafdc318e417dce9db1d88a9.tar.gz
looks_like_bool can be const
Message-ID: <20060313153152.GA13254@petdance.com> p4raw-id: //depot/perl@27492
Diffstat (limited to 'proto.h')
-rw-r--r--proto.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/proto.h b/proto.h
index c6c0d2ff78..fd42b8cbde 100644
--- a/proto.h
+++ b/proto.h
@@ -3180,7 +3180,7 @@ STATIC OP* S_too_many_arguments(pTHX_ OP *o, const char* name)
__attribute__nonnull__(pTHX_1)
__attribute__nonnull__(pTHX_2);
-STATIC bool S_looks_like_bool(pTHX_ OP* o)
+STATIC bool S_looks_like_bool(pTHX_ const OP* o)
__attribute__nonnull__(pTHX_1);
STATIC OP* S_newGIVWHENOP(pTHX_ OP* cond, OP *block, I32 enter_opcode, I32 leave_opcode, PADOFFSET entertarg)