summaryrefslogtreecommitdiff
path: root/utf8.h
diff options
context:
space:
mode:
authorKarl Williamson <khw@cpan.org>2015-11-07 10:44:00 -0700
committerKarl Williamson <khw@cpan.org>2015-12-09 17:11:54 -0700
commit98f41bf0fbbb2c91d3881dbd08635ff49a0fb67f (patch)
tree4de941e157bdd4293398e596f30016d76c087e12 /utf8.h
parentc87792c33d2fba7bd3b1ca02182436a120b6b075 (diff)
downloadperl-98f41bf0fbbb2c91d3881dbd08635ff49a0fb67f.tar.gz
utf8.h: Remove unused #define
UTF8_QUAD_MAX is no longer used in the core, and is not in cpan, and its name is highly misleading. It is defined to be 2**36, which has really nothing to do with what its name indicates.
Diffstat (limited to 'utf8.h')
-rw-r--r--utf8.h4
1 files changed, 0 insertions, 4 deletions
diff --git a/utf8.h b/utf8.h
index 4467abd76a..d200c1853e 100644
--- a/utf8.h
+++ b/utf8.h
@@ -241,10 +241,6 @@ Perl's extended UTF-8 means we can have start bytes up to FF.
* real information */
#define UTF_ACCUMULATION_SHIFT 6
-#if UVSIZE >= 8
-# define UTF8_QUAD_MAX UINT64_C(0x1000000000)
-#endif
-
/* ^? is defined to be DEL on ASCII systems. See the definition of toCTRL()
* for more */
#define QUESTION_MARK_CTRL DEL_NATIVE