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