libserialize: use unboxed closures
This commit is contained in:
parent
95d0763707
commit
9b075bcf3f
1 changed files with 1 additions and 1 deletions
|
@ -2680,7 +2680,7 @@ mod tests {
|
||||||
from_str(a.to_pretty_str().as_slice()).unwrap());
|
from_str(a.to_pretty_str().as_slice()).unwrap());
|
||||||
}
|
}
|
||||||
|
|
||||||
fn with_str_writer(f: |&mut io::Writer|) -> string::String {
|
fn with_str_writer<F>(f: F) -> string::String where F: FnOnce(&mut io::Writer){
|
||||||
use std::str;
|
use std::str;
|
||||||
|
|
||||||
let mut m = Vec::new();
|
let mut m = Vec::new();
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue