From 07978370f78df134acbced8bf9e596eae25c1dde Mon Sep 17 00:00:00 2001 From: Tom Browder Date: Fri, 12 Jan 2018 21:27:05 -0600 Subject: [PATCH] delete unneeded hardware int bit size determination code --- src/Perl6/Pod.nqp | 4 ---- 1 file changed, 4 deletions(-) diff --git a/src/Perl6/Pod.nqp b/src/Perl6/Pod.nqp index 3d1f354f64d..83f8f454246 100644 --- a/src/Perl6/Pod.nqp +++ b/src/Perl6/Pod.nqp @@ -2,10 +2,6 @@ class Perl6::Pod { # various helpers for Pod parsing and processing - # hardware int checks (from Actions.nqp): - my int $?BITS := nqp::isgt_i(nqp::add_i(2147483648, 1), 0) ?? 64 !! 32; - my $max-dec-intchars := $?BITS == 64 ?? 16 !! 9; - my $caption := ''; # var to save table caption values between # subs make_config and table