Remove no longer needed cppcheck inline suppressions.

This commit is contained in:
Eduardo Arias
2024-10-21 16:04:14 -03:00
parent 7ec50eb53f
commit aca93f568e
5 changed files with 7 additions and 7 deletions

View File

@@ -67,8 +67,8 @@ class Lua {
public:
Lua() { }
bool load(const std::string &script, std::string *err); // cppcheck-suppress functionStatic ; triggered when compiling without LUA
int run(Transaction *t, const std::string &str = ""); // cppcheck-suppress functionStatic ; triggered when compiling without LUA
bool load(const std::string &script, std::string *err);
int run(Transaction *t, const std::string &str = "");
static bool isCompatible(const std::string &script, Lua *l, std::string *error);
#ifdef WITH_LUA