diff options
author | Max Kellermann <max@musicpd.org> | 2016-12-27 23:13:03 +0100 |
---|---|---|
committer | Max Kellermann <max@musicpd.org> | 2016-12-27 23:13:26 +0100 |
commit | fdb136f1fa02f22e7dc9d3754c64355cd0757943 (patch) | |
tree | 4ed735e386832b192d9e3e2e59a6700f3e763c93 /src/StateFile.cxx | |
parent | 9e330747352ba2b248fc66920108ec624a334534 (diff) |
StateFile: use C++11 initializers
Diffstat (limited to 'src/StateFile.cxx')
-rw-r--r-- | src/StateFile.cxx | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/src/StateFile.cxx b/src/StateFile.cxx index 4c731faab..ab1cbdb39 100644 --- a/src/StateFile.cxx +++ b/src/StateFile.cxx @@ -42,9 +42,7 @@ StateFile::StateFile(AllocatedPath &&_path, unsigned _interval, :TimeoutMonitor(_loop), path(std::move(_path)), path_utf8(path.ToUTF8()), interval(_interval), - partition(_partition), - prev_volume_version(0), prev_output_version(0), - prev_playlist_version(0) + partition(_partition) { } |