Skip to content
This repository was archived by the owner on Jul 6, 2019. It is now read-only.

Commit 07b199b

Browse files
committed
Merge pull request #63 from farcaller/cleanup
Code cleanup & fixes for nightly rustc updates Reviewed-by: bharrisau
2 parents 085c88c + 90fc8a2 commit 07b199b

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

platformtree/pt.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ pub struct Node {
4747
impl Node {
4848
pub fn new() -> Node {
4949
Node {
50-
name: Some(String::from_str("test")),
50+
name: None,
5151
path: Path {
5252
absolute: false,
5353
path: Vec::new(),

src/drivers/chario.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818
use core::option::{Some, None};
1919
use core::str::{Str, StrSlice};
2020
use core::slice::{Vector, ImmutableVector};
21-
use core::container::Container;
21+
use core::collections::Collection;
2222
use core::iter::Iterator;
2323

2424
use core::mem::zeroed;

0 commit comments

Comments
 (0)