updated build system

This commit is contained in:
Scott E. Graves 2024-10-10 14:10:27 -05:00
parent 52a2df2576
commit ea249723f9
2 changed files with 4 additions and 4 deletions

View File

@ -46,11 +46,11 @@ struct db_next_limit_t final {
return ctx->where->dump(idx);
}
[[nodiscard]] auto get_next() -> wn_t & {
[[nodiscard]] auto get_next() -> w_t & {
return std::get<w_t>(std::prev(owner->sub_actions->end()));
}
[[nodiscard]] auto get_next() const -> const wn_t & {
[[nodiscard]] auto get_next() const -> const w_t & {
return std::get<w_t>(std::prev(owner->sub_actions->end()));
}

View File

@ -45,11 +45,11 @@ struct db_next_t final {
return ctx->where->dump(idx);
}
[[nodiscard]] auto get_next() -> wn_t & {
[[nodiscard]] auto get_next() -> w_t & {
return std::get<w_t>(std::prev(owner->sub_actions->end()));
}
[[nodiscard]] auto get_next() const -> const wn_t & {
[[nodiscard]] auto get_next() const -> const w_t & {
return std::get<w_t>(std::prev(owner->sub_actions->end()));
}