blob: e33566b12e3123b6d092ab28455b84c354c6fd65 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
// file : build/algorithm.ixx -*- C++ -*-
// copyright : Copyright (c) 2014-2015 Code Synthesis Tools CC
// license : MIT; see accompanying LICENSE file
namespace build
{
void
match_impl (action, target&);
inline void
match (action a, target& t)
{
if (!t.recipe (a))
match_impl (a, t);
}
}
|