configure: require c++14 compatible compiler

This commit is contained in:
Andrzej Rybczak
2016-11-13 11:04:23 +01:00
parent 40163dedaa
commit 41317d31c8
29 changed files with 549 additions and 591 deletions

View File

@@ -34,16 +34,16 @@ struct Lyrics: Screen<NC::Scrollpad>, Tabbable
Lyrics();
// Screen<NC::Scrollpad> implementation
virtual void resize() OVERRIDE;
virtual void switchTo() OVERRIDE;
virtual void resize() override;
virtual void switchTo() override;
virtual std::wstring title() OVERRIDE;
virtual ScreenType type() OVERRIDE { return ScreenType::Lyrics; }
virtual std::wstring title() override;
virtual ScreenType type() override { return ScreenType::Lyrics; }
virtual void update() OVERRIDE;
virtual void update() override;
virtual bool isLockable() OVERRIDE { return false; }
virtual bool isMergable() OVERRIDE { return true; }
virtual bool isLockable() override { return false; }
virtual bool isMergable() override { return true; }
// private members
bool SetSong(const MPD::Song &s);