]> source.dussan.org Git - rspamd.git/commitdiff
[Minor] Do not use names starting from `_` as they might be reserved
authorVsevolod Stakhov <vsevolod@rspamd.com>
Tue, 4 Oct 2022 22:58:42 +0000 (23:58 +0100)
committerVsevolod Stakhov <vsevolod@rspamd.com>
Tue, 4 Oct 2022 22:58:42 +0000 (23:58 +0100)
Issue: #4293

src/libserver/symcache/symcache_internal.hxx

index f2a1e66693a0093c094abe5f02d2c2326b432fa8..be2a2b2f5b596264fc92c894e39bf36c7f6ca677 100644 (file)
@@ -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 {