summaryrefslogtreecommitdiff
path: root/feature.h
diff options
context:
space:
mode:
authorFather Chrysostomos <sprout@cpan.org>2011-12-22 21:26:33 -0800
committerFather Chrysostomos <sprout@cpan.org>2011-12-24 09:25:17 -0800
commitbeda03184afe46d6702e6e184c42e8fcf5691386 (patch)
tree14dd18d1f5874dd7fde89d9b0e3e49fae46e8021 /feature.h
parent2846acbffa436a8a6bda1f5b38257b700500bbf0 (diff)
downloadperl-beda03184afe46d6702e6e184c42e8fcf5691386.tar.gz
feature.h: Avoid compiler warning
unsigned >= 0 produces a warning, even if the 0 is actually a macro.
Diffstat (limited to 'feature.h')
-rw-r--r--feature.h3
1 files changed, 1 insertions, 2 deletions
diff --git a/feature.h b/feature.h
index a56ac8b51f..6c99c2af98 100644
--- a/feature.h
+++ b/feature.h
@@ -52,8 +52,7 @@
#define FEATURE_ARYBASE_IS_ENABLED \
( \
- (CURRENT_FEATURE_BUNDLE >= FEATURE_BUNDLE_DEFAULT && \
- CURRENT_FEATURE_BUNDLE <= FEATURE_BUNDLE_511) \
+ CURRENT_FEATURE_BUNDLE <= FEATURE_BUNDLE_511 \
|| (CURRENT_FEATURE_BUNDLE == FEATURE_BUNDLE_CUSTOM && \
FEATURE_IS_ENABLED_d("arybase")) \
)