blob: d84db52cb724d99c4c8494e931aa180e92ed169f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
// file : build/utility.cxx -*- C++ -*-
// copyright : Copyright (c) 2014-2015 Code Synthesis Tools CC
// license : MIT; see accompanying LICENSE file
#include <build/utility>
using namespace std;
namespace build
{
const string empty_string;
const path empty_path;
const dir_path empty_dir_path;
bool exception_unwinding_dtor = false;
string_pool extension_pool;
}
|