diff options
| author | Aaron Turon <aturon@mozilla.com> | 2014-12-18 19:41:20 -0800 |
|---|---|---|
| committer | Aaron Turon <aturon@mozilla.com> | 2014-12-18 23:35:53 -0800 |
| commit | a9e7669cdc551588144a5b56db0b42dd35b71876 (patch) | |
| tree | c67441c5a1f7dbec4370a291966e4651eee8f852 /src/libstd/rt | |
| parent | f4c0c0ff42e81a47c4e1e6985db62a28a8576406 (diff) | |
| download | rust-a9e7669cdc551588144a5b56db0b42dd35b71876.tar.gz rust-a9e7669cdc551588144a5b56db0b42dd35b71876.zip | |
Rebasing fixes.
Diffstat (limited to 'src/libstd/rt')
| -rw-r--r-- | src/libstd/rt/unwind.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/libstd/rt/unwind.rs b/src/libstd/rt/unwind.rs index 9f34a72f807..5d5440b887d 100644 --- a/src/libstd/rt/unwind.rs +++ b/src/libstd/rt/unwind.rs @@ -94,7 +94,7 @@ static CALLBACKS: [atomic::AtomicUint, ..MAX_CALLBACKS] = atomic::INIT_ATOMIC_UINT, atomic::INIT_ATOMIC_UINT]; static CALLBACK_CNT: atomic::AtomicUint = atomic::INIT_ATOMIC_UINT; -thread_local!(static PANICKING: Cell<bool> = Cell::new(false)) +thread_local! { static PANICKING: Cell<bool> = Cell::new(false) } /// Invoke a closure, capturing the cause of panic if one occurs. /// |
