From 22278dfe43f8d3a492d643671b8926b77582a583 Mon Sep 17 00:00:00 2001 From: Karen Arutyunov Date: Tue, 24 Jan 2017 16:16:48 +0300 Subject: Add default constructors to *_rule classes to make older clang happy --- build2/install/rule | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'build2/install') diff --git a/build2/install/rule b/build2/install/rule index 1345dbd..aad5ee4 100644 --- a/build2/install/rule +++ b/build2/install/rule @@ -19,6 +19,8 @@ namespace build2 class alias_rule: public rule { public: + alias_rule () {} + virtual match_result match (action, target&, const string&) const override; @@ -31,6 +33,8 @@ namespace build2 class file_rule: public rule { public: + file_rule () {} + virtual match_result match (action, target&, const string&) const override; -- cgit v1.1