Shut up some clang warnings

This commit is contained in:
Eelco Dolstra
2019-09-02 17:43:27 +02:00
parent 61fdb16aac
commit c693f80b81
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()