updated build system

This commit is contained in:
Scott E. Graves 2024-10-10 14:33:37 -05:00
parent 24c647966b
commit 1f4872769d

View File

@ -46,11 +46,11 @@ struct db_next_t final {
}
[[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 & {
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(); }