Shut up some clang warnings

This commit is contained in:
Eelco Dolstra 2019-09-02 17:43:27 +02:00
parent 61fdb16aac
commit c693f80b81
No known key found for this signature in database
GPG key ID: 8170B4726D7198DE
2 changed files with 4 additions and 0 deletions

View file

@ -199,6 +199,8 @@ private:
public:
virtual ~Command() { }
std::string name() { return _name; }
virtual void prepare() { };

View file

@ -49,6 +49,8 @@ struct App
struct Installable
{
virtual ~Installable() { }
virtual std::string what() = 0;
virtual Buildables toBuildables()