fix(build): GCC name error
This commit is contained in:
parent
6db66896bd
commit
24a2febd59
@ -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 New Issue
Block a user