diff --git a/include/ircd/tokens.h b/include/ircd/tokens.h index bc72bbe94..a60811bd1 100644 --- a/include/ircd/tokens.h +++ b/include/ircd/tokens.h @@ -138,8 +138,7 @@ C ircd::tokens(const string_view &str, const delim &sep) { - A allocator; - return tokens(allocator, str, sep); + return tokens(A{}, str, sep); } template @@ -172,8 +171,7 @@ C ircd::tokens(const string_view &str, const delim &sep) { - A allocator; - return tokens(allocator, str, sep); + return tokens(A{}, str, sep); } template