blob: b446ef4100194c1798d4a59b98ee76ee7a2e2b4b (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
// file : build2/file.ixx -*- C++ -*-
// copyright : Copyright (c) 2014-2015 Code Synthesis Ltd
// license : MIT; see accompanying LICENSE file
namespace build2
{
inline void
source_once (const path& bf, scope& root, scope& base)
{
return source_once (bf, root, base, base);
}
}
|