mirror of
https://github.com/owasp-modsecurity/ModSecurity.git
synced 2025-11-18 10:20:35 +03:00
Cosmetic changes: applies changes suggested by static analysis
This commit is contained in:
@@ -42,8 +42,8 @@ class Regex {
|
||||
class SMatch {
|
||||
public:
|
||||
SMatch() : size_(0) { }
|
||||
size_t size() { return size_; }
|
||||
std::string str() { return match; }
|
||||
size_t size() const { return size_; }
|
||||
std::string str() const { return match; }
|
||||
int size_;
|
||||
std::string match;
|
||||
};
|
||||
|
||||
Reference in New Issue
Block a user