diff options
| author | Alex Crichton <alex@alexcrichton.com> | 2014-11-26 09:44:43 -0800 |
|---|---|---|
| committer | Alex Crichton <alex@alexcrichton.com> | 2014-11-26 16:49:46 -0800 |
| commit | f4a775639ca846f29abeed16a7b4e8e1c8819626 (patch) | |
| tree | ad6c9a0c61140ae68169fca89e8641af83c92e33 /src/libstd/rt | |
| parent | 702127f6f1b099f8a34804ddb71f821444b7b64e (diff) | |
| parent | 21d5d139fc6e04781b7f9d9eeab0f8f0255ac06b (diff) | |
| download | rust-f4a775639ca846f29abeed16a7b4e8e1c8819626.tar.gz rust-f4a775639ca846f29abeed16a7b4e8e1c8819626.zip | |
rollup merge of #19298: nikomatsakis/unboxed-closure-parse-the-plus
Implements RFC 438. Fixes #19092. This is a [breaking-change]: change types like `&Foo+Send` or `&'a mut Foo+'a` to `&(Foo+Send)` and `&'a mut (Foo+'a)`, respectively. r? @brson
Diffstat (limited to 'src/libstd/rt')
| -rw-r--r-- | src/libstd/rt/backtrace.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/libstd/rt/backtrace.rs b/src/libstd/rt/backtrace.rs index 4f6c1f8a2c6..d375ddcc94b 100644 --- a/src/libstd/rt/backtrace.rs +++ b/src/libstd/rt/backtrace.rs @@ -288,7 +288,7 @@ mod imp { struct Context<'a> { idx: int, - writer: &'a mut Writer+'a, + writer: &'a mut (Writer+'a), last_error: Option<IoError>, } |
