diff options
author | Vsevolod Stakhov <vsevolod@rspamd.com> | 2022-07-17 16:43:47 +0100 |
---|---|---|
committer | Vsevolod Stakhov <vsevolod@rspamd.com> | 2022-07-17 16:43:47 +0100 |
commit | 969902f04569ab12e69e0d57ef1f6e9f0c42f855 (patch) | |
tree | 2d4ae6f19a613c4327e94da917aa89694dd2ff00 /src/lua | |
parent | 93022e6207ed15f8dd231ad43511d7c9e3f2eee8 (diff) | |
download | rspamd-969902f04569ab12e69e0d57ef1f6e9f0c42f855.tar.gz rspamd-969902f04569ab12e69e0d57ef1f6e9f0c42f855.zip |
[Rework] Use another version of hash table from the same author
Diffstat (limited to 'src/lua')
-rw-r--r-- | src/lua/lua_html.cxx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/lua/lua_html.cxx b/src/lua/lua_html.cxx index 666b08a60..cecf4bb5c 100644 --- a/src/lua/lua_html.cxx +++ b/src/lua/lua_html.cxx @@ -21,7 +21,7 @@ #include "libserver/html/html_block.hxx" #include "images.h" -#include <contrib/robin-hood/robin_hood.h> +#include "contrib/ankerl/unordered_dense.h" #include <frozen/string.h> #include <frozen/unordered_map.h> @@ -406,7 +406,7 @@ lua_html_foreach_tag (lua_State *L) const gchar *tagname; gint id; auto any = false; - robin_hood::unordered_flat_set<int> tags; + ankerl::unordered_dense::set<int> tags; if (lua_type (L, 2) == LUA_TSTRING) { |