Added const reported by cppcheck 2.14

This commit is contained in:
Eduardo Arias
2024-04-28 21:23:43 -03:00
committed by Eduardo Arias
parent d053ec6de6
commit bbef22b3b5
46 changed files with 110 additions and 112 deletions

View File

@@ -92,7 +92,7 @@ struct TransformationTest {
return tfn;
}
static UnitTestResult eval(const ItemType &tfn, const UnitTest &t, modsecurity::Transaction &transaction) {
static UnitTestResult eval(const ItemType &tfn, const UnitTest &t, const modsecurity::Transaction &transaction) {
auto ret = t.input;
tfn.transform(ret, &transaction);
return {1, ret};

View File

@@ -75,7 +75,7 @@ void json2bin(std::string *str) {
}
std::string UnitTest::print() {
std::string UnitTest::print() const {
std::stringstream i;
i << KRED << "Test failed." << RESET;

View File

@@ -35,7 +35,7 @@ class UnitTest {
public:
static UnitTest *from_yajl_node(const yajl_val &);
std::string print();
std::string print() const;
std::string param;
std::string input;