aboutsummaryrefslogtreecommitdiffstats
path: root/storage/src/tests/storageapi/mbusprot
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/storageapi/mbusprot
parentc52f85fc197ac72b8011de1d6021a0ce5588b9dc (diff)
Change from typedef to using in storage C++ code.
Diffstat (limited to 'storage/src/tests/storageapi/mbusprot')
-rw-r--r--storage/src/tests/storageapi/mbusprot/storageprotocoltest.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/storage/src/tests/storageapi/mbusprot/storageprotocoltest.cpp b/storage/src/tests/storageapi/mbusprot/storageprotocoltest.cpp
index aeef0f613b2..09ee8e46a1a 100644
--- a/storage/src/tests/storageapi/mbusprot/storageprotocoltest.cpp
+++ b/storage/src/tests/storageapi/mbusprot/storageprotocoltest.cpp
@@ -439,7 +439,7 @@ TEST_P(StorageProtocolTest, delete_bucket) {
}
TEST_P(StorageProtocolTest, merge_bucket) {
- typedef api::MergeBucketCommand::Node Node;
+ using Node = api::MergeBucketCommand::Node;
std::vector<Node> nodes;
nodes.push_back(Node(4, false));
nodes.push_back(Node(13, true));