diff options
| author | Ben Striegel <ben.striegel@gmail.com> | 2013-03-15 18:26:59 -0400 |
|---|---|---|
| committer | Ben Striegel <ben.striegel@gmail.com> | 2013-03-15 18:26:59 -0400 |
| commit | 748c2c9ebc3859c77a1fa3ef808ddd04c77bab75 (patch) | |
| tree | e9c9357f6be3901d61dbca2a6716e9114e0bf5aa /src/libsyntax/ext | |
| parent | 2b059c6e5638de7b241ffddb38cef906813de245 (diff) | |
| download | rust-748c2c9ebc3859c77a1fa3ef808ddd04c77bab75.tar.gz rust-748c2c9ebc3859c77a1fa3ef808ddd04c77bab75.zip | |
impl Clone for ~T, ~[T], ~str
Diffstat (limited to 'src/libsyntax/ext')
| -rw-r--r-- | src/libsyntax/ext/pipes/liveness.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/libsyntax/ext/pipes/liveness.rs b/src/libsyntax/ext/pipes/liveness.rs index 97f2e516603..15ba7f95538 100644 --- a/src/libsyntax/ext/pipes/liveness.rs +++ b/src/libsyntax/ext/pipes/liveness.rs @@ -63,7 +63,7 @@ pub fn analyze(proto: protocol, _cx: @ext_ctxt) { debug!("colive iteration %?", i); let mut new_colive = ~[]; for colive.eachi |i, this_colive| { - let mut result = ~this_colive.clone(); + let mut result = this_colive.clone(); let this = proto.get_state_by_id(i); for this_colive.ones |j| { let next = proto.get_state_by_id(j); |
