diff options
author | Karen Arutyunov <karen@codesynthesis.com> | 2017-01-24 16:16:48 +0300 |
---|---|---|
committer | Karen Arutyunov <karen@codesynthesis.com> | 2017-01-24 16:18:31 +0300 |
commit | 22278dfe43f8d3a492d643671b8926b77582a583 (patch) | |
tree | 6cdd29b008a3614b7589352dc0b99ce610c98e8c /build2/rule | |
parent | 7d292e2ab53dfc2cf6595f30bcdb6efa4bf260a3 (diff) |
Add default constructors to *_rule classes to make older clang happy
Diffstat (limited to 'build2/rule')
-rw-r--r-- | build2/rule | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/build2/rule b/build2/rule index fbf3dcc..d01df6b 100644 --- a/build2/rule +++ b/build2/rule @@ -48,6 +48,8 @@ namespace build2 class file_rule: public rule { public: + file_rule () {} + virtual match_result match (action, target&, const string& hint) const override; @@ -60,6 +62,8 @@ namespace build2 class alias_rule: public rule { public: + alias_rule () {} + virtual match_result match (action, target&, const string& hint) const override; @@ -72,6 +76,8 @@ namespace build2 class fsdir_rule: public rule { public: + fsdir_rule () {} + virtual match_result match (action, target&, const string& hint) const override; @@ -92,6 +98,8 @@ namespace build2 class fallback_rule: public build2::rule { public: + fallback_rule () {} + virtual match_result match (action, target&, const string&) const override {return true;} |