mirror of
https://salsa.debian.org/dskoll/remind.git
synced 2026-04-17 23:08:40 +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 {
|
typedef struct ifentry_struct {
|
||||||
unsigned int if_true:1;
|
|
||||||
unsigned int before_else:1;
|
|
||||||
unsigned int was_constant:1;
|
|
||||||
int lineno;
|
int lineno;
|
||||||
|
unsigned char if_true;
|
||||||
|
unsigned char before_else;
|
||||||
|
unsigned char was_constant;
|
||||||
} ifentry;
|
} ifentry;
|
||||||
|
|
||||||
static ifentry IfArray[IF_NEST];
|
static ifentry IfArray[IF_NEST];
|
||||||
|
|||||||
Reference in New Issue
Block a user