summaryrefslogtreecommitdiffstats
path: root/storage
diff options
context:
space:
mode:
authorHenning Baldersheim <balder@yahoo-inc.com>2018-08-14 17:24:31 +0000
committerHenning Baldersheim <balder@oath.com>2018-08-15 08:40:30 +0200
commitd705c3503c9ecbc252dd59d52e425db1d39b1f0e (patch)
treeef0ae52f896f65507c5e54e8b07f7dc6411d8772 /storage
parent3a6e89f6c58d02a7a3a249b7dda19997281a2d4b (diff)
Deinline for gcc 8
Diffstat (limited to 'storage')
-rw-r--r--storage/src/vespa/storage/bucketdb/storagebucketdbinitializer.cpp2
-rw-r--r--storage/src/vespa/storage/bucketdb/storagebucketdbinitializer.h1
2 files changed, 3 insertions, 0 deletions
diff --git a/storage/src/vespa/storage/bucketdb/storagebucketdbinitializer.cpp b/storage/src/vespa/storage/bucketdb/storagebucketdbinitializer.cpp
index 3576011d492..0837b0d1463 100644
--- a/storage/src/vespa/storage/bucketdb/storagebucketdbinitializer.cpp
+++ b/storage/src/vespa/storage/bucketdb/storagebucketdbinitializer.cpp
@@ -60,6 +60,8 @@ StorageBucketDBInitializer::Config::Config(const config::ConfigUri & configUri)
_minPendingInfoReadsPerDisk, _maxPendingInfoReadsPerDisk);
}
+StorageBucketDBInitializer::System::~System() = default;
+
StorageBucketDBInitializer::System::System(
const spi::PartitionStateList& partitions,
DoneInitializeHandler& doneInitializeHandler,
diff --git a/storage/src/vespa/storage/bucketdb/storagebucketdbinitializer.h b/storage/src/vespa/storage/bucketdb/storagebucketdbinitializer.h
index 642fe43ad8a..13de3416dce 100644
--- a/storage/src/vespa/storage/bucketdb/storagebucketdbinitializer.h
+++ b/storage/src/vespa/storage/bucketdb/storagebucketdbinitializer.h
@@ -88,6 +88,7 @@ class StorageBucketDBInitializer : public StorageLink,
DoneInitializeHandler& doneInitializeHandler,
ServiceLayerComponentRegister&,
const Config&);
+ ~System();
StorBucketDatabase &getBucketDatabase(document::BucketSpace bucketSpace) const;
};