diff options
| author | 2022-01-25 13:59:42 +0000 | |
|---|---|---|
| committer | 2022-01-25 14:02:36 +0000 | |
| commit | d79147e7afe2eca34780c607f78b11f8b3dd017d (patch) | |
| tree | a3f9a145dd53f9c1c268ac9b521ac907b802eab0 /src/modules/m_regex_stdlib.cpp | |
| parent | Fix a few Doxygen comment errors. (diff) | |
Abolish the infernal space before accessibility keywords.
Diffstat (limited to 'src/modules/m_regex_stdlib.cpp')
| -rw-r--r-- | src/modules/m_regex_stdlib.cpp | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/src/modules/m_regex_stdlib.cpp b/src/modules/m_regex_stdlib.cpp index 714ed05aa..0f2d31a61 100644 --- a/src/modules/m_regex_stdlib.cpp +++ b/src/modules/m_regex_stdlib.cpp @@ -28,10 +28,10 @@ class StdLibPattern final : public Regex::Pattern { - private: +private: std::regex regex; - public: +public: StdLibPattern(const Module* mod, const std::string& pattern, uint8_t options, std::regex::flag_type type) : Regex::Pattern(pattern, options) { @@ -59,7 +59,7 @@ class StdLibPattern final class StdLibEngine final : public Regex::Engine { - public: +public: std::regex::flag_type regextype; StdLibEngine(Module* Creator) @@ -76,10 +76,10 @@ class StdLibEngine final class ModuleRegexStdLib final : public Module { - private: +private: StdLibEngine regex; - public: +public: ModuleRegexStdLib() : Module(VF_VENDOR, "Provides the stdregex regular expression engine which uses the C++11 std::regex regular expression matching system.") , regex(this) |
