summaryrefslogtreecommitdiff
path: root/src/Main.cxx
diff options
context:
space:
mode:
authorMax Kellermann <max@musicpd.org>2020-02-01 13:55:08 +0100
committerMax Kellermann <max@musicpd.org>2020-02-01 14:02:43 +0100
commit72ec641f0d5a33de882a05a53e2f3a3b74226eb3 (patch)
treed52d290cab7f7cbec7e67ebb0f7998962cdae534 /src/Main.cxx
parent4f22f4d357c99ba4163a496882f813138db3c39b (diff)
*: use `auto`
Diffstat (limited to 'src/Main.cxx')
-rw-r--r--src/Main.cxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/Main.cxx b/src/Main.cxx
index eec9d6154..0c20fb6cd 100644
--- a/src/Main.cxx
+++ b/src/Main.cxx
@@ -172,7 +172,7 @@ InitStorage(Instance &instance, EventLoop &event_loop,
if (storage == nullptr)
return;
- CompositeStorage *composite = new CompositeStorage();
+ auto *composite = new CompositeStorage();
instance.storage = composite;
composite->Mount("", std::move(storage));
}