From c6565d4b08aaa574913fcf883d464fad2859c65a Mon Sep 17 00:00:00 2001 From: Karl Williamson Date: Fri, 16 Oct 2020 06:53:11 -0600 Subject: Make some flags accessible from /ext Nothing in the test suite (nor apparently CPAN) had exercised this area of the code, and so this flaw hadn't been discovered. But new code about to be commited does. --- op.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'op.h') diff --git a/op.h b/op.h index f5cda92ecf..2279edbb97 100644 --- a/op.h +++ b/op.h @@ -837,7 +837,7 @@ preprocessing token; the type of C depends on C. #define RV2CVOPCV_MARK_EARLY 0x00000001 #define RV2CVOPCV_RETURN_NAME_GV 0x00000002 #define RV2CVOPCV_RETURN_STUB 0x00000004 -#ifdef PERL_CORE /* behaviour of this flag is subject to change: */ +#if defined(PERL_CORE) || defined(PERL_EXT) /* behaviour of this flag is subject to change: */ # define RV2CVOPCV_MAYBE_NAME_GV 0x00000008 #endif #define RV2CVOPCV_FLAG_MASK 0x0000000f /* all of the above */ -- cgit v1.2.1