From 78ec65a2e96872514136b5289450af2af9c92556 Mon Sep 17 00:00:00 2001 From: Petr Pucil Date: Tue, 2 Mar 2021 23:51:06 +0100 Subject: [PATCH] Remove unused SIGN_MASK_64 constant --- lib/Kaitai/Struct/Stream.php | 1 - 1 file changed, 1 deletion(-) diff --git a/lib/Kaitai/Struct/Stream.php b/lib/Kaitai/Struct/Stream.php index 587fa1a..9689020 100644 --- a/lib/Kaitai/Struct/Stream.php +++ b/lib/Kaitai/Struct/Stream.php @@ -13,7 +13,6 @@ class Stream { const SIGN_MASK_16 = 0x8000; // (1 << (16 - 1)); const SIGN_MASK_32 = 0x80000000; // (1 << (32 - 1)); - const SIGN_MASK_64 = 0x800000000000; // (1 << (64 - 1)); private $bits, $bitsLeft;