[base/application] One of the run methods wasn't overriding

This commit is contained in:
Joe Thornber 2020-04-08 12:19:06 +01:00
parent 0ccee1759e
commit 8db3800e2c
1 changed files with 1 additions and 1 deletions

View File

@ -43,7 +43,7 @@ namespace base {
fn_(fn) {
}
int run(int argc, char **argv) const {
int run(int argc, char **argv) {
return fn_(argc, argv);
}