Remove key type from StraightHashMap.

This commit is contained in:
Stephen Chung
2022-09-12 23:08:38 +08:00
parent 08f6682d09
commit 40a12b2b7d
5 changed files with 19 additions and 19 deletions

View File

@@ -32,7 +32,7 @@ use std::{
pub type ParseResult<T> = Result<T, ParseError>;
type FnLib = StraightHashMap<u64, Shared<ScriptFnDef>>;
type FnLib = StraightHashMap<Shared<ScriptFnDef>>;
const KEYWORD_SEMICOLON: &str = Token::SemiColon.literal_syntax();