aboutsummaryrefslogtreecommitdiffstats
path: root/storage/src/tests/persistence/filestorage
diff options
context:
space:
mode:
authorGeir Storli <geirst@yahooinc.com>2022-12-21 13:59:27 +0000
committerGeir Storli <geirst@yahooinc.com>2022-12-21 15:49:53 +0000
commit90393771da4a397562db57756cc9ca7b6bdca3fd (patch)
tree51dc7f74b4c2bd96f5a93e7cbb365e0a5236b64e /storage/src/tests/persistence/filestorage
parentc52f85fc197ac72b8011de1d6021a0ce5588b9dc (diff)
Change from typedef to using in storage C++ code.
Diffstat (limited to 'storage/src/tests/persistence/filestorage')
-rw-r--r--storage/src/tests/persistence/filestorage/operationabortingtest.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/storage/src/tests/persistence/filestorage/operationabortingtest.cpp b/storage/src/tests/persistence/filestorage/operationabortingtest.cpp
index ecf4ddde911..000e1e1c155 100644
--- a/storage/src/tests/persistence/filestorage/operationabortingtest.cpp
+++ b/storage/src/tests/persistence/filestorage/operationabortingtest.cpp
@@ -31,7 +31,7 @@ class BlockingMockProvider : public PersistenceProviderWrapper
vespalib::Barrier& _queueBarrier;
vespalib::Barrier& _completionBarrier;
public:
- typedef std::unique_ptr<BlockingMockProvider> UP;
+ using UP = std::unique_ptr<BlockingMockProvider>;
mutable std::atomic<uint32_t> _bucketInfoInvocations;
std::atomic<uint32_t> _createBucketInvocations;