Application: remove a default value.
This'll stop Clang-Tidy's complaining that "default values in virtual/override methods are prohibited". Dunno how prohibited they are, but better safe than sorry, even though there was no compile error/warning.
This commit is contained in:
parent
9f0386d5b3
commit
bf5a9872e1
1 changed files with 1 additions and 1 deletions
|
@ -63,7 +63,7 @@ class Application: public Platform::Sdl2Application, public efsw::FileWatchListe
|
|||
const std::string& dir,
|
||||
const std::string& filename,
|
||||
efsw::Action action,
|
||||
std::string old_filename = "") override;
|
||||
std::string old_filename) override;
|
||||
|
||||
private:
|
||||
// Events
|
||||
|
|
Loading…
Reference in a new issue