summaryrefslogtreecommitdiffstats
path: root/staging_vespalib
diff options
context:
space:
mode:
authorHenning Baldersheim <balder@yahoo-inc.com>2020-11-07 20:15:57 +0000
committerHenning Baldersheim <balder@yahoo-inc.com>2020-11-07 23:21:38 +0000
commite6b0122165549bcfa232d8e4eef2e20ee1b963db (patch)
tree6e7a1b254120e24416f3db9dae3a623f8a438279 /staging_vespalib
parent81f33dd36a90bcef7be8a88021a820526b093c06 (diff)
No need to inherit Identifiable.
Diffstat (limited to 'staging_vespalib')
-rw-r--r--staging_vespalib/src/vespa/vespalib/objects/fieldbase.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/staging_vespalib/src/vespa/vespalib/objects/fieldbase.h b/staging_vespalib/src/vespa/vespalib/objects/fieldbase.h
index d10687a36ad..2de113f8383 100644
--- a/staging_vespalib/src/vespa/vespalib/objects/fieldbase.h
+++ b/staging_vespalib/src/vespa/vespalib/objects/fieldbase.h
@@ -8,7 +8,7 @@ namespace vespalib {
class IFieldBase
{
public:
- virtual ~IFieldBase() { }
+ virtual ~IFieldBase() = default;
// Overrides must guarantee that returned reference is zero-terminated.
virtual stringref getName() const = 0;
};