mirror of
https://salsa.debian.org/dskoll/remind.git
synced 2026-04-16 06:18:47 +02:00
Don't use bitfields. They don't save space and are slower.
This commit is contained in:
@@ -42,10 +42,10 @@ static int base_pointer = 0;
|
||||
*/
|
||||
|
||||
typedef struct ifentry_struct {
|
||||
unsigned int if_true:1;
|
||||
unsigned int before_else:1;
|
||||
unsigned int was_constant:1;
|
||||
int lineno;
|
||||
unsigned char if_true;
|
||||
unsigned char before_else;
|
||||
unsigned char was_constant;
|
||||
} ifentry;
|
||||
|
||||
static ifentry IfArray[IF_NEST];
|
||||
|
||||
Reference in New Issue
Block a user