updated build system
This commit is contained in:
		| @@ -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(); } | ||||||
|   | |||||||
		Reference in New Issue
	
	Block a user