diff options
author | Boris Kolpackov <boris@codesynthesis.com> | 2015-06-30 15:07:03 +0200 |
---|---|---|
committer | Boris Kolpackov <boris@codesynthesis.com> | 2015-06-30 15:07:03 +0200 |
commit | 70af0087d8efb3f2f7dc9ffdf2568419913f16da (patch) | |
tree | dceeab7a3c600add8bf3f3375a2d83ca11213624 /build/prerequisite | |
parent | 18568ff0ff3dce89d694b494c5dfc9a32e63c9e6 (diff) |
Group "see through" iteration, take 1
Diffstat (limited to 'build/prerequisite')
-rw-r--r-- | build/prerequisite | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/build/prerequisite b/build/prerequisite index 529b225..e33feb6 100644 --- a/build/prerequisite +++ b/build/prerequisite @@ -81,7 +81,7 @@ namespace build // template <typename T> bool - is_a () const {return type.id == typeid (T);} + is_a () const {return type.is_a<T> ();} }; inline bool @@ -107,6 +107,12 @@ namespace build const std::string* ext, scope&, tracer&); + + std::pair<prerequisite&, bool> + insert (const target_key& tk, scope& s, tracer& t) + { + return insert (*tk.type, *tk.dir, *tk.name, *tk.ext, s, t); + } }; } |