Moves static methods from class String to the namespace string

This commit is contained in:
Felipe Zimmerle
2016-11-04 15:58:05 -03:00
parent 62a0cb468b
commit 2244e874e2
31 changed files with 151 additions and 182 deletions

View File

@@ -24,14 +24,11 @@
#include "src/utils/string.h"
using modsecurity::utils::String;
namespace modsecurity {
namespace actions {
bool Phase::init(std::string *error) {
std::string a = String::tolower(m_parser_payload);
std::string a = utils::string::tolower(m_parser_payload);
m_phase = -1;
try {