aboutsummaryrefslogtreecommitdiff
path: root/build/algorithm.ixx
diff options
context:
space:
mode:
authorBoris Kolpackov <boris@codesynthesis.com>2015-04-26 09:53:41 +0200
committerBoris Kolpackov <boris@codesynthesis.com>2015-04-26 09:53:41 +0200
commit54e24990203f5e123396a44297ea4656ed3b6101 (patch)
treed6581a15fa0fea6a5de7c7c7e5147f3d7c865cc9 /build/algorithm.ixx
parent478c521c09f1962e9d82a3fc4297e5cafb8c0758 (diff)
Rework resolved prerequisite targets storage
Diffstat (limited to 'build/algorithm.ixx')
-rw-r--r--build/algorithm.ixx14
1 files changed, 0 insertions, 14 deletions
diff --git a/build/algorithm.ixx b/build/algorithm.ixx
index 76f9a0f..ee63f90 100644
--- a/build/algorithm.ixx
+++ b/build/algorithm.ixx
@@ -52,18 +52,4 @@ namespace build
}
}
}
-
- template <typename T, executor_function* E>
- T*
- execute_find_prerequisites (action, target&, const timestamp&, bool&);
-
- template <typename T, executor_function* E>
- inline T*
- execute_find_prerequisites (action a, target& t, const timestamp& mt)
- {
- bool e (mt == timestamp_nonexistent);
- T* r (execute_find_prerequisites<T, E> (a, t, mt, e));
- assert (r != nullptr);
- return e ? r : nullptr;
- }
}