summaryrefslogtreecommitdiff
path: root/op.h
diff options
context:
space:
mode:
authorGurusamy Sarathy <gsar@cpan.org>2000-01-14 01:27:13 +0000
committerGurusamy Sarathy <gsar@cpan.org>2000-01-14 01:27:13 +0000
commit192587c2153e5b0fa4ed545cdd3fa7fef8fc0d8b (patch)
tree23c4d17163d0c727b113962137cc49dcb7697c9c /op.h
parent9740c8380c47f3138ea60459cef1e748515e656d (diff)
downloadperl-192587c2153e5b0fa4ed545cdd3fa7fef8fc0d8b.tar.gz
avoid spurious "Useless use of variable" warning on C<our $foo;>
p4raw-id: //depot/perl@4800
Diffstat (limited to 'op.h')
-rw-r--r--op.h4
1 files changed, 3 insertions, 1 deletions
diff --git a/op.h b/op.h
index 5231a4131c..c69d897239 100644
--- a/op.h
+++ b/op.h
@@ -136,7 +136,9 @@ typedef U32 PADOFFSET;
#define OPpEARLY_CV 32 /* foo() called before sub foo was parsed */
/* OP_?ELEM only */
#define OPpLVAL_DEFER 16 /* Defer creation of array/hash elem */
- /* for OP_RV2?V, lower bits carry hints */
+ /* OP_RV2?V only */
+#define OPpOUR_INTRO 16 /* Defer creation of array/hash elem */
+ /* for OP_RV2?V, lower bits carry hints (currently only HINT_STRICT_REFS) */
/* Private for OPs with TARGLEX */
/* (lower bits may carry MAXARG) */