aboutsummaryrefslogtreecommitdiffstats
path: root/storage/src/vespa/storage/distributor/operation_sequencer.h
diff options
context:
space:
mode:
Diffstat (limited to 'storage/src/vespa/storage/distributor/operation_sequencer.h')
-rw-r--r--storage/src/vespa/storage/distributor/operation_sequencer.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/storage/src/vespa/storage/distributor/operation_sequencer.h b/storage/src/vespa/storage/distributor/operation_sequencer.h
index cf687e721a8..7a523b61e53 100644
--- a/storage/src/vespa/storage/distributor/operation_sequencer.h
+++ b/storage/src/vespa/storage/distributor/operation_sequencer.h
@@ -24,7 +24,7 @@ class SequencingHandle {
OperationSequencer* _sequencer;
document::GlobalId _gid;
public:
- SequencingHandle() : _sequencer(nullptr) {}
+ SequencingHandle() noexcept : _sequencer(nullptr) {}
SequencingHandle(OperationSequencer& sequencer, const document::GlobalId& gid)
: _sequencer(&sequencer),
_gid(gid)