projects
/
emacs.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
cab3b67
)
Use a bool instead of a bitfield
author
Matt Armstrong
<matt@rfc20.org>
Thu, 6 Oct 2022 20:18:46 +0000
(13:18 -0700)
committer
Matt Armstrong
<matt@rfc20.org>
Fri, 7 Oct 2022 16:38:49 +0000
(09:38 -0700)
* src/itree.c (struct interval_generator): use a bool instead of a
bitfield, since space is not an issue.
src/itree.c
patch
|
blob
|
history
diff --git
a/src/itree.c
b/src/itree.c
index 3098fe1cf4525b63431b4d79e0632e0aba7bcb14..79e39d6e2abde4ddb5da11ffdb8c52540e262819 100644
(file)
--- a/
src/itree.c
+++ b/
src/itree.c
@@
-145,7
+145,7
@@
struct interval_generator
ptrdiff_t end;
uintmax_t otick; /* A copy of the tree's `otick`. */
enum interval_tree_order order;
- bool
_bf running : 1
;
+ bool
running
;
const char* file;
int line;
};