1
Fork 0
mirror of git://git.sv.gnu.org/emacs.git synced 2026-01-18 08:51:45 -08:00

Use a bool instead of a bitfield

* src/itree.c (struct interval_generator): use a bool instead of a
bitfield, since space is not an issue.
This commit is contained in:
Matt Armstrong 2022-10-06 13:18:46 -07:00
parent cab3b67652
commit c0d5026321

View file

@ -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;
};