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