[lexer] Oops forgot a return type on Hash::new()
This commit is contained in:
parent
7a6c2b91d1
commit
757f943fff
1 changed files with 1 additions and 1 deletions
|
@ -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 {
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue