updated build system
This commit is contained in:
parent
24c647966b
commit
1f4872769d
@ -46,11 +46,11 @@ struct db_next_t final {
|
|||||||
}
|
}
|
||||||
|
|
||||||
[[nodiscard]] auto get_next() -> w_t & {
|
[[nodiscard]] auto get_next() -> w_t & {
|
||||||
return std::get<w_t>(std::prev(owner->sub_actions.end()));
|
return *std::prev(owner->sub_actions.end());
|
||||||
}
|
}
|
||||||
|
|
||||||
[[nodiscard]] auto get_next() const -> const w_t & {
|
[[nodiscard]] auto get_next() const -> const w_t & {
|
||||||
return std::get<w_t>(std::prev(owner->sub_actions.end()));
|
return *std::prev(owner->sub_actions.end());
|
||||||
}
|
}
|
||||||
|
|
||||||
[[nodiscard]] auto go() const -> auto { return op_t{ctx}.go(); }
|
[[nodiscard]] auto go() const -> auto { return op_t{ctx}.go(); }
|
||||||
|
Loading…
x
Reference in New Issue
Block a user