Commit d3d70a7e authored by Max Kellermann's avatar Max Kellermann

client/List: use `auto`

parent 39046bed
/*
* Copyright 2003-2018 The Music Player Daemon Project
* Copyright 2003-2019 The Music Player Daemon Project
* http://www.musicpd.org
*
* This program is free software; you can redistribute it and/or modify
......@@ -40,11 +40,11 @@ public:
CloseAll();
}
List::iterator begin() noexcept {
auto begin() noexcept {
return list.begin();
}
List::iterator end() noexcept {
auto end() noexcept {
return list.end();
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment