Drop server.h include from input/input-manager.h

The only reason it's included there is for a declaration of
struct sway_server, but we can just forward-declare it.

This avoids rebuilding almost all of Sway when touching server.h.
All other server.h includes are from source files, not headers.
This commit is contained in:
Simon Ser 2024-05-25 00:02:48 +02:00 committed by Simon Zeni
parent df69367d92
commit d0bd591ee7
24 changed files with 29 additions and 1 deletions

View file

@ -5,6 +5,7 @@
#include "sway/config.h"
#include "sway/commands.h"
#include "sway/input/input-manager.h"
#include "sway/server.h"
#include "log.h"
#if WLR_HAS_LIBINPUT_BACKEND