Branch: refs/heads/blead
Home: https://github.com/Perl/perl5
Commit: e72852772d35fa07c6f4def68643512939de4443
https://github.com/Perl/perl5/commit/e72852772d35fa07c6f4def68643512939de4443
Author: Karl Williamson <[email protected]>
Date: 2021-09-16 (Thu, 16 Sep 2021)
Changed paths:
M utf8.h
Log Message:
-----------
utf8.h: Rmv redundant asserts
These macros asserted both that the passed in parameter occupied no more
than a byte, and that it wasn't a pointer. But pointers occupy more
than a byte, so if it passes the first check, meaning it occupies only a
byte, it will necessarily pass the second, making that check unnecessary.