summaryrefslogtreecommitdiff
path: root/src/stringfilter.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/stringfilter.cpp')
-rw-r--r--src/stringfilter.cpp3
1 files changed, 1 insertions, 2 deletions
diff --git a/src/stringfilter.cpp b/src/stringfilter.cpp
index 30876a82d..4765a880e 100644
--- a/src/stringfilter.cpp
+++ b/src/stringfilter.cpp
@@ -74,8 +74,7 @@ void StringFilter::SetFilterTerm(const char *str)
/* Add to word */
if (word == nullptr) {
- /*C++17: word = &*/ this->word_index.push_back({dest, false});
- word = &this->word_index.back();
+ word = &this->word_index.emplace_back(WordState{ dest, false });
}
memcpy(dest, pos, len);