Fix: use unimplemented instead of false implementation

This commit is contained in:
Matthias Beyer 2015-11-27 16:55:18 +01:00
parent 8a546dfb26
commit 6926363f70
1 changed files with 2 additions and 2 deletions

View File

@ -3,11 +3,11 @@ use std::path::{Path, PathBuf};
pub type FileID = String; pub type FileID = String;
pub fn from_path_string(s: &String) -> FileID { pub fn from_path_string(s: &String) -> FileID {
String::from("") unimplemented!()
} }
pub fn from_path(p: &Path) -> FileID { pub fn from_path(p: &Path) -> FileID {
String::from("") unimplemented!()
} }
pub fn from_pathbuf(p: &PathBuf) -> FileID { pub fn from_pathbuf(p: &PathBuf) -> FileID {