mirror of
https://github.com/polybar/polybar.git
synced 2024-11-25 13:55:47 -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 {
|
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)) {}
|
: index(index), state(state_), label(forward<label_t>(label)) {}
|
||||||
|
|
||||||
operator bool();
|
operator bool();
|
||||||
|
|
||||||
int index;
|
int index;
|
||||||
state state;
|
enum state state;
|
||||||
label_t label;
|
label_t label;
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue