]> git.eshelyaron.com Git - emacs.git/commitdiff
Use a bool instead of a bitfield
authorMatt Armstrong <matt@rfc20.org>
Thu, 6 Oct 2022 20:18:46 +0000 (13:18 -0700)
committerMatt 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

index 3098fe1cf4525b63431b4d79e0632e0aba7bcb14..79e39d6e2abde4ddb5da11ffdb8c52540e262819 100644 (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;
 };