blob: 02c223c06171829068c41b0a0af3b878ddc28eda (
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 (target&);
inline void
match (target& t)
{
if (!t.recipe ())
match_impl (t);
}
}
|