Cleanup: use a boolean for BMesh::use_toolflags

Bit-fields don't have any advantage in this case, use a boolean.
This commit is contained in:
Campbell Barton
2025-09-11 14:30:00 +10:00
parent c3f49cd24e
commit 62906cb6f4

View File

@@ -354,7 +354,7 @@ struct BMesh {
/** Operator API stuff (must be all null or all allocated). */
struct BLI_mempool *vtoolflagpool, *etoolflagpool, *ftoolflagpool;
uint use_toolflags : 1;
bool use_toolflags;
int toolflag_index;