From 15cc23cee50388df979749431afc3e3d5d85643a Mon Sep 17 00:00:00 2001 From: Hourier <66951241+Hourier@users.noreply.github.com> Date: Fri, 28 Apr 2023 20:08:53 +0900 Subject: [PATCH] =?utf8?q?[Refactor]=20#3187=20=E9=96=A2=E6=95=B0=E3=83=9E?= =?utf8?q?=E3=82=AF=E3=83=ADIS=5FFLG()=20=E3=82=92=E5=89=8A=E9=99=A4?= =?utf8?q?=E3=81=97=E3=81=9F?= MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit --- src/autopick/autopick-key-flag-process.h | 1 - 1 file changed, 1 deletion(-) diff --git a/src/autopick/autopick-key-flag-process.h b/src/autopick/autopick-key-flag-process.h index 9f22ea02f..e74ee8088 100644 --- a/src/autopick/autopick-key-flag-process.h +++ b/src/autopick/autopick-key-flag-process.h @@ -17,4 +17,3 @@ #define ADD_FLG(FLG) (entry->flags[FLG / 32] |= (1UL << (FLG % 32))) #define REM_FLG(FLG) (entry->flags[FLG / 32] &= ~(1UL << (FLG % 32))) #define ADD_FLG_NOUN(FLG) (ADD_FLG(FLG), prev_flg = FLG) -#define IS_FLG(FLG) (entry->flags[FLG / 32] & (1UL << (FLG % 32))) -- 2.11.0