From c0b829accec596a1ac9f7f29cc528d1ebd68112b Mon Sep 17 00:00:00 2001 From: "Yukihiro \"Matz\" Matsumoto" Date: Mon, 18 Apr 2022 11:30:50 +0900 Subject: [PATCH] bigint.h: remove unused macro OVMASK. --- include/mruby/bigint.h | 2 -- 1 file changed, 2 deletions(-) diff --git a/include/mruby/bigint.h b/include/mruby/bigint.h index 02f745cc4..6dba4c7c9 100644 --- a/include/mruby/bigint.h +++ b/include/mruby/bigint.h @@ -42,7 +42,6 @@ typedef int32_t mp_limb; typedef uint32_t mp_ulimb; #define LMAX 0x3fffffffL #define LC 0xc0000000L -#define OVMASK 0x2 #define CMASK (LMAX+1) #define HLMAX 0x7fffL #define HCMASK (HLMAX + 1) @@ -55,7 +54,6 @@ typedef int64_t mp_limb; typedef uint64_t mp_ulimb; #define LMAX 0x3fffffffffffffffLL #define LC 0xc000000000000000LL -#define OVMASK 0x2 #define CMASK (LMAX+1) #define HLMAX 0x7fffffffLL #define HCMASK (HLMAX + 1)