Compare commits

...

2 Commits

Author SHA1 Message Date
Guillaume Jacquemin 12995367eb
Logger: remove an unnecessary include. 2024-03-30 17:06:04 +01:00
Guillaume Jacquemin bf5a9872e1
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.
2024-03-30 16:07:24 +01:00
2 changed files with 1 additions and 3 deletions

View File

@ -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

View File

@ -16,8 +16,6 @@
// You should have received a copy of the GNU General Public License
// along with this program. If not, see <https://www.gnu.org/licenses/>.
#include <ctime>
#ifndef SAVETOOL_DEBUG_BUILD
#include <fstream>
#endif