Remove inline keyword

The compiler is smarter at figuring out whether a function should be
inlined or not.
This commit is contained in:
Simon Ser 2020-12-15 13:49:42 +01:00
parent 93cd3a79b2
commit e57a52e7f7
No known key found for this signature in database
GPG key ID: 0FDE7BE0E88F5E48
2 changed files with 2 additions and 2 deletions

View file

@ -1165,7 +1165,7 @@ static bool update_state(int action, bool *state) {
return changed;
}
static inline bool xsurface_is_maximized(
static bool xsurface_is_maximized(
struct wlr_xwayland_surface *xsurface) {
return xsurface->maximized_horz && xsurface->maximized_vert;
}