blob: 2fbc2530087008c6707315f2b8a4aa149f3d77d5 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
// file : build2/file.ixx -*- C++ -*-
// copyright : Copyright (c) 2014-2016 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);
}
}
|