summaryrefslogtreecommitdiffstats
path: root/searchlib
diff options
context:
space:
mode:
authorTor Egge <Tor.Egge@yahooinc.com>2022-03-31 16:31:57 +0200
committerTor Egge <Tor.Egge@yahooinc.com>2022-03-31 16:31:57 +0200
commitdcf6dd4dc3a4c2ae5cfc46625fb11f3f1a2dde2e (patch)
tree936411dc3852c114a4ef4cc653f56395adf702d5 /searchlib
parent537380a281aa03e694fd0b5e720302ea370046fd (diff)
Add noexcept specifier to SearchContext move constructor.
Diffstat (limited to 'searchlib')
-rw-r--r--searchlib/src/vespa/searchlib/attribute/search_context.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/searchlib/src/vespa/searchlib/attribute/search_context.h b/searchlib/src/vespa/searchlib/attribute/search_context.h
index d65a2b3b531..6ae92e0cb85 100644
--- a/searchlib/src/vespa/searchlib/attribute/search_context.h
+++ b/searchlib/src/vespa/searchlib/attribute/search_context.h
@@ -27,7 +27,7 @@ protected:
using QueryTermSimpleUP = std::unique_ptr<QueryTermSimple>;
public:
SearchContext(const SearchContext&) = delete;
- SearchContext(SearchContext&&) = default;
+ SearchContext(SearchContext&&) noexcept = default;
SearchContext& operator=(const SearchContext&) = delete;
SearchContext& operator=(SearchContext&&) = delete;
~SearchContext() override;