changed all non-owned unique_ptr access to reference to the object itself
This commit is contained in:
@ -8,9 +8,9 @@
|
||||
|
||||
class curses_output final : public display {
|
||||
private:
|
||||
const std::unique_ptr<cursor> &curse;
|
||||
cursor &curse;
|
||||
public:
|
||||
curses_output(const std::unique_ptr<cursor> &new_curse);
|
||||
curses_output(cursor &new_curse);
|
||||
|
||||
void render() override;
|
||||
void clear() override;
|
||||
|
Reference in New Issue
Block a user