summaryrefslogtreecommitdiffstats
path: root/searchlib
diff options
context:
space:
mode:
authorHenning Baldersheim <balder@yahoo-inc.com>2022-10-17 18:38:38 +0000
committerHenning Baldersheim <balder@yahoo-inc.com>2022-10-17 18:38:38 +0000
commita1201b21383b1a19712e3eb6c401b4258ff7eba4 (patch)
tree75871cde14cd5471da852d98673cec4f943c96d5 /searchlib
parenta13c1f486ea9470a72a5dd564929216370f91951 (diff)
Add space after noexcept
Diffstat (limited to 'searchlib')
-rw-r--r--searchlib/src/vespa/searchlib/attribute/string_search_helper.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/searchlib/src/vespa/searchlib/attribute/string_search_helper.h b/searchlib/src/vespa/searchlib/attribute/string_search_helper.h
index 146d1653a3e..4d69b61449e 100644
--- a/searchlib/src/vespa/searchlib/attribute/string_search_helper.h
+++ b/searchlib/src/vespa/searchlib/attribute/string_search_helper.h
@@ -22,10 +22,10 @@ public:
StringSearchHelper & operator =(const StringSearchHelper &) = delete;
~StringSearchHelper();
bool isMatch(const char *src) const;
- bool isPrefix() const noexcept{ return _isPrefix; }
- bool isRegex() const noexcept{ return _isRegex; }
- bool isCased() const noexcept{ return _isCased; }
- bool isFuzzy() const noexcept{ return _isFuzzy; }
+ bool isPrefix() const noexcept { return _isPrefix; }
+ bool isRegex() const noexcept { return _isRegex; }
+ bool isCased() const noexcept { return _isCased; }
+ bool isFuzzy() const noexcept { return _isFuzzy; }
const vespalib::Regex & getRegex() const noexcept { return _regex; }
const vespalib::FuzzyMatcher & getFuzzyMatcher() const noexcept { return *_fuzzyMatcher; }
private: