blob: c66fba295ce624c0cf61500a7455ca529fb687df (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
// 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;
bool exception_unwinding_dtor = false;
string_pool extension_pool;
}
|