Make codebase consistent with design.md

This commit is contained in:
2025-08-17 17:00:23 -04:00
parent 1b1b875a3a
commit 9e397d19c9
11 changed files with 154 additions and 75 deletions

View File

@@ -56,7 +56,7 @@ enum class JsonTokenType {
*/
inline JsonTokenType get_json_token_type(std::string_view str) {
const JsonToken *token =
Perfect_Hash::lookup_json_token(str.data(), str.size());
PerfectHash::lookup_json_token(str.data(), str.size());
if (token) {
return static_cast<JsonTokenType>(token->token_id);
}