[lexer] Oops forgot a return type on Hash::new()

This commit is contained in:
Eryn Wells 2018-09-02 14:05:56 -07:00
parent 7a6c2b91d1
commit 757f943fff

View file

@ -17,7 +17,7 @@ const FALSE: &'static str = "false";
#[derive(Debug)] pub struct BoolSub(String); #[derive(Debug)] pub struct BoolSub(String);
impl Hash { impl Hash {
pub fn new() { Hash{} } pub fn new() -> Hash { Hash{} }
} }
impl State for Hash { impl State for Hash {