1
0
mirror of https://github.com/zenorogue/hyperrogue.git synced 2025-09-12 07:16:01 +00:00

Merge pull request #341 from Quuxplusone/override

Consistently apply `override` (and not `virtual`) to overriding virtuals
This commit is contained in:
Zeno Rogue
2023-08-22 19:56:17 +02:00
committed by GitHub
9 changed files with 40 additions and 40 deletions

View File

@@ -1811,7 +1811,7 @@ EX namespace dialog {
int editpos = 0;
string *edited_string;
string view_edited_string();
void draw();
void draw() override;
void start_editing(string& s);
bool handle_edit_string(int sym, int uni, function<string(int, int)> checker = editchecker);
};