From: Vsevolod Stakhov Date: Tue, 4 Oct 2022 22:58:42 +0000 (+0100) Subject: [Minor] Do not use names starting from `_` as they might be reserved X-Git-Tag: 3.4~73 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=420cb619af8b6d9d8be871caef77b4c81d60419a;p=thirdparty%2Frspamd.git [Minor] Do not use names starting from `_` as they might be reserved Issue: #4293 --- diff --git a/src/libserver/symcache/symcache_internal.hxx b/src/libserver/symcache/symcache_internal.hxx index f2a1e66693..be2a2b2f5b 100644 --- a/src/libserver/symcache/symcache_internal.hxx +++ b/src/libserver/symcache/symcache_internal.hxx @@ -139,8 +139,8 @@ struct delayed_cache_condition { int cbref; lua_State *L; public: - delayed_cache_condition(std::string_view _sym, int _cbref, lua_State *_L) : - sym(_sym), cbref(_cbref), L(_L) {} + delayed_cache_condition(std::string_view sym, int cbref, lua_State *L) : + sym(sym), cbref(cbref), L(L) {} }; class delayed_symbol_elt {