blob: 032d178cec3fc7ea48e5947b6c849d0dbf4f0236 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
// file : butl/utility.cxx -*- C++ -*-
// copyright : Copyright (c) 2014-2016 Code Synthesis Ltd
// license : MIT; see accompanying LICENSE file
#include <butl/utility>
namespace butl
{
#ifndef BUTL_CXX17_UNCAUGHT_EXCEPTIONS
#ifdef BUTL_CXX11_THREAD_LOCAL
thread_local
#else
__thread
#endif
bool exception_unwinding_dtor = false;
#endif
}
|