OSDN Git Service

[Refactor] #3187 関数マクロIS_FLG() を削除した
authorHourier <66951241+Hourier@users.noreply.github.com>
Fri, 28 Apr 2023 11:08:53 +0000 (20:08 +0900)
committerHourier <66951241+Hourier@users.noreply.github.com>
Sat, 29 Apr 2023 14:33:25 +0000 (23:33 +0900)
src/autopick/autopick-key-flag-process.h

index 9f22ea0..e74ee80 100644 (file)
@@ -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)))