From e7f0c18c77929909632121f9baa52805addc4842 Mon Sep 17 00:00:00 2001 From: Henning Baldersheim Date: Thu, 23 Jan 2020 09:23:47 +0000 Subject: Move the transaction implementation from StructuredFieldValue to Document --- staging_vespalib/src/vespa/vespalib/objects/identifiable.h | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'staging_vespalib/src') diff --git a/staging_vespalib/src/vespa/vespalib/objects/identifiable.h b/staging_vespalib/src/vespa/vespalib/objects/identifiable.h index 4a87dde82e4..e452c35cabe 100644 --- a/staging_vespalib/src/vespa/vespalib/objects/identifiable.h +++ b/staging_vespalib/src/vespa/vespalib/objects/identifiable.h @@ -190,12 +190,12 @@ public: RuntimeInfo * _rt; }; DECLARE_IDENTIFIABLE_ROOT(Identifiable); - Identifiable() { } - Identifiable(Identifiable &&) = default; - Identifiable & operator = (Identifiable &&) = default; + Identifiable() noexcept = default; + Identifiable(Identifiable &&) noexcept = default; + Identifiable & operator = (Identifiable &&) noexcept = default; Identifiable(const Identifiable &) = default; Identifiable & operator = (const Identifiable &) = default; - virtual ~Identifiable() { } + virtual ~Identifiable() noexcept = default; /** * Will produce the full demangled className -- cgit v1.2.3