commands: Remove unused code after 1d3681f521

Clang 13 reports:

../sway/commands.c:470:23: error: variable 'context' set but not used
[-Werror,-Wunused-but-set-variable]
        enum command_context context = 0;
                             ^
Last use of was removed in commit 1d3681f521.

Downstream PR: https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=258813
This commit is contained in:
Evgeniy Khramtsov 2021-10-01 16:11:39 +03:00 committed by Simon Ser
parent c43f1fbf1c
commit ff468584ab
2 changed files with 0 additions and 36 deletions

View file

@ -418,14 +418,6 @@ enum sway_popup_during_fullscreen {
POPUP_LEAVE,
};
enum command_context {
CONTEXT_CONFIG = 1 << 0,
CONTEXT_BINDING = 1 << 1,
CONTEXT_IPC = 1 << 2,
CONTEXT_CRITERIA = 1 << 3,
CONTEXT_ALL = 0xFFFFFFFF,
};
enum focus_follows_mouse_mode {
FOLLOWS_NO,
FOLLOWS_YES,