refactor: replace C11 keywords with C23 equivalents, NULL→nullptr, remove stdbool.h

This commit is contained in:
2026-07-02 02:02:09 -04:00
parent 1e09b182ee
commit 969a6c4ecb
12 changed files with 171 additions and 172 deletions
+2 -2
View File
@@ -111,7 +111,7 @@ ext_workspace_cleanupmon(Monitor *m)
wlr_ext_workspace_group_handle_v1_output_leave(
m->ext_group, m->wlr_output);
wlr_ext_workspace_group_handle_v1_destroy(m->ext_group);
m->ext_group = NULL;
m->ext_group = nullptr;
}
/* status */
@@ -143,7 +143,7 @@ handle_ext_commit(struct wl_listener *listener, void *data)
struct wlr_ext_workspace_v1_request *req;
wl_list_for_each(req, event->requests, link) {
struct ext_workspace *ws = NULL;
struct ext_workspace *ws = nullptr;
struct ext_workspace *w;
switch (req->type) {