diff options
Diffstat (limited to 'build/algorithm.ixx')
-rw-r--r-- | build/algorithm.ixx | 14 |
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; - } } |