This is a live mirror of the Perl 5 development currently hosted at https://github.com/perl/perl5
perldelta for e0c6a6b8c9
[perl5.git] / feature.h
index c98a5b3..370896e 100644 (file)
--- a/feature.h
+++ b/feature.h
         FEATURE_IS_ENABLED("arybase")) \
     )
 
+#define FEATURE_SIGNATURES_IS_ENABLED \
+    ( \
+       CURRENT_FEATURE_BUNDLE == FEATURE_BUNDLE_CUSTOM && \
+        FEATURE_IS_ENABLED("signatures") \
+    )
+
 #define FEATURE___SUB___IS_ENABLED \
     ( \
        CURRENT_FEATURE_BUNDLE == FEATURE_BUNDLE_515 \
         FEATURE_IS_ENABLED("__SUB__")) \
     )
 
+#define FEATURE_REFALIASING_IS_ENABLED \
+    ( \
+       CURRENT_FEATURE_BUNDLE == FEATURE_BUNDLE_CUSTOM && \
+        FEATURE_IS_ENABLED("refaliasing") \
+    )
+
 #define FEATURE_LEXSUBS_IS_ENABLED \
     ( \
        CURRENT_FEATURE_BUNDLE == FEATURE_BUNDLE_CUSTOM && \