Skip to content
This repository has been archived by the owner on May 6, 2020. It is now read-only.

Commit

Permalink
Remove nightly-only push_all
Browse files Browse the repository at this point in the history
  • Loading branch information
erickt committed May 18, 2015
1 parent 9907695 commit 551bc93
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion quasi/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -173,7 +173,7 @@ macro_rules! impl_to_tokens_slice {
let mut v = vec![];
for (i, x) in self.iter().enumerate() {
if i > 0 {
v.push_all(&$sep);
v.extend($sep.iter().cloned());
}
v.extend(x.to_tokens(cx));
}
Expand Down

0 comments on commit 551bc93

Please sign in to comment.