diff options
| author | 2022-10-21 17:15:10 +0100 | |
|---|---|---|
| committer | 2022-10-21 17:15:10 +0100 | |
| commit | 3928f478f1a05394c8aab47a8d5f38e18cce9669 (patch) | |
| tree | d9d107a8127be7166aa91d10ffa2d9a541ad062c /src/hashcomp.cpp | |
| parent | Merge branch 'insp3' into master. (diff) | |
Assign more class members inline instead of in the constructor.
Diffstat (limited to 'src/hashcomp.cpp')
| -rw-r--r-- | src/hashcomp.cpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/hashcomp.cpp b/src/hashcomp.cpp index 9225374f4..9abeee56d 100644 --- a/src/hashcomp.cpp +++ b/src/hashcomp.cpp @@ -274,7 +274,8 @@ bool irc::sepstream::Contains(const std::string& value) } irc::portparser::portparser(const std::string& source, bool allow_overlapped) - : sep(source), in_range(0), range_begin(0), range_end(0), overlapped(allow_overlapped) + : sep(source) + , overlapped(allow_overlapped) { } |
