summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--src/client/List.hxx6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/client/List.hxx b/src/client/List.hxx
index 214a76838..093ae3a47 100644
--- a/src/client/List.hxx
+++ b/src/client/List.hxx
@@ -1,5 +1,5 @@
/*
- * 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();
}