summaryrefslogtreecommitdiffstats
path: root/searchsummary
diff options
context:
space:
mode:
authorGeir Storli <geirst@verizonmedia.com>2019-12-03 09:31:19 +0000
committerGeir Storli <geirst@verizonmedia.com>2019-12-03 13:28:52 +0000
commita2e9fcd2b92e1f8e27664abec0e1ab0b923151e1 (patch)
treeb49a7d0b7ae6e10cea99a230c4dc6a09071c8e08 /searchsummary
parent7505a365c8b9c5ce02012aecd613f51a51a273ce (diff)
Remove copy constructor and copy assignment operator.
Diffstat (limited to 'searchsummary')
-rw-r--r--searchsummary/src/vespa/searchsummary/docsummary/docsumstorevalue.h3
1 files changed, 3 insertions, 0 deletions
diff --git a/searchsummary/src/vespa/searchsummary/docsummary/docsumstorevalue.h b/searchsummary/src/vespa/searchsummary/docsummary/docsumstorevalue.h
index 4cb04c452a9..4aaf1bf5816 100644
--- a/searchsummary/src/vespa/searchsummary/docsummary/docsumstorevalue.h
+++ b/searchsummary/src/vespa/searchsummary/docsummary/docsumstorevalue.h
@@ -25,6 +25,9 @@ private:
std::unique_ptr<document::Document> _document;
public:
+ DocsumStoreValue(const DocsumStoreValue&) = delete;
+ DocsumStoreValue& operator=(const DocsumStoreValue&) = delete;
+
/**
* Construct object representing an empty docsum blob.
**/