blob: d3941869e09beccf90b54bb8bba1d8565daf2524 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
// file : build/utility.cxx -*- C++ -*-
// copyright : Copyright (c) 2014-2015 Code Synthesis Ltd
// 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;
}
|