mirror of
https://github.com/polybar/polybar.git
synced 2024-11-18 13:55:11 -05:00
fix(build): GCC name error
This commit is contained in:
parent
6db66896bd
commit
24a2febd59
1 changed files with 2 additions and 2 deletions
|
@ -22,13 +22,13 @@ namespace modules {
|
|||
};
|
||||
|
||||
struct workspace {
|
||||
explicit workspace(int index, state state_, label_t&& label)
|
||||
explicit workspace(int index, enum state state_, label_t&& label)
|
||||
: index(index), state(state_), label(forward<label_t>(label)) {}
|
||||
|
||||
operator bool();
|
||||
|
||||
int index;
|
||||
state state;
|
||||
enum state state;
|
||||
label_t label;
|
||||
};
|
||||
|
||||
|
|
Loading…
Reference in a new issue