mirror of
https://git.wownero.com/wownero/wownero.git
synced 2024-08-15 01:03:23 +00:00
Merge pull request #2103
21b939e1
readline: fix invalid memory access (moneromooo-monero)5f8f2905
readline_buffer: add a couple const (moneromooo-monero)
This commit is contained in:
commit
a0b494aa71
2 changed files with 4 additions and 4 deletions
|
@ -13,11 +13,11 @@ namespace rdln
|
|||
void start();
|
||||
void stop();
|
||||
int process();
|
||||
bool is_running()
|
||||
bool is_running() const
|
||||
{
|
||||
return m_cout_buf != NULL;
|
||||
}
|
||||
void get_line(std::string& line);
|
||||
void get_line(std::string& line) const;
|
||||
void set_prompt(const std::string& prompt);
|
||||
|
||||
protected:
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue