Remove most uses of #[feature(core)]

This commit is contained in:
John Gallagher
2015-03-17 00:55:28 -04:00
parent b3d949b3bb
commit 632d87de2f
3 changed files with 14 additions and 14 deletions

View File

@@ -240,7 +240,7 @@ mod test {
let mut stmt = db.prepare("INSERT INTO foo VALUES(1)").unwrap();
bencher.iter(|| {
for _ in range(0i32, 1000) {
for _ in 0i32 .. 1000 {
stmt.execute(&[]).unwrap();
}
})
@@ -255,7 +255,7 @@ mod test {
bencher.iter(|| {
let mut tx = db.transaction().unwrap();
tx.set_commit();
for _ in range(0i32, 1000) {
for _ in 0i32 .. 1000 {
stmt.execute(&[]).unwrap();
}
})