diff options
| author | Dimitry Andric <dim@FreeBSD.org> | 2013-12-22 00:04:03 +0000 | 
|---|---|---|
| committer | Dimitry Andric <dim@FreeBSD.org> | 2013-12-22 00:04:03 +0000 | 
| commit | f8af5cf600354830d4ccf59732403f0f073eccb9 (patch) | |
| tree | 2ba0398b4c42ad4f55561327538044fd2c925a8b /lib/Support/ThreadLocal.cpp | |
| parent | 59d6cff90eecf31cb3dd860c4e786674cfdd42eb (diff) | |
Notes
Diffstat (limited to 'lib/Support/ThreadLocal.cpp')
| -rw-r--r-- | lib/Support/ThreadLocal.cpp | 2 | 
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/Support/ThreadLocal.cpp b/lib/Support/ThreadLocal.cpp index 0587aaec7e68..868b6ea566a9 100644 --- a/lib/Support/ThreadLocal.cpp +++ b/lib/Support/ThreadLocal.cpp @@ -23,7 +23,7 @@  // Define all methods as no-ops if threading is explicitly disabled  namespace llvm {  using namespace sys; -ThreadLocalImpl::ThreadLocalImpl() { } +ThreadLocalImpl::ThreadLocalImpl() : data() { }  ThreadLocalImpl::~ThreadLocalImpl() { }  void ThreadLocalImpl::setInstance(const void* d) {    typedef int SIZE_TOO_BIG[sizeof(d) <= sizeof(data) ? 1 : -1];  | 
