remove warnings

This commit is contained in:
2026-05-06 21:46:54 +07:00
parent 2b7353248d
commit 0971ee551e
2 changed files with 14 additions and 1 deletions
+1 -1
View File
@@ -104,7 +104,7 @@ setup(absn_server *server)
server->scene_layout = wlr_scene_attach_output_layout(server->scene,
server->output_layout);
/* windows lists */
/* toplevels lists */
wl_list_init(&server->toplevels);
wl_list_init(&server->focus_stack);
+13
View File
@@ -1,16 +1,29 @@
#include "types.h"
void
layer_surface_map(struct wl_listener *listener, void *data)
{
UNUSED(listener);
UNUSED(data);
}
void
layer_surface_unmap(struct wl_listener *listener, void *data)
{
UNUSED(listener);
UNUSED(data);
}
void
layer_surface_commit(struct wl_listener *listener, void *data)
{
UNUSED(listener);
UNUSED(data);
}
void
layer_surface_destroy(struct wl_listener *listener, void *data)
{
UNUSED(listener);
UNUSED(data);
}