We should use the FileID type in the File

This commit is contained in:
Matthias Beyer 2015-11-23 18:46:09 +01:00
parent bff2bf68c6
commit 25de1c6c2a

View file

@ -166,7 +166,7 @@ pub fn match_header_spec<'a>(spec: &'a FileHeaderSpec, data: &'a FileHeaderData)
pub struct File {
header : FileHeaderData,
data : String,
id : String
id : FileID,
}
impl<'a> File {