diff options
author | Max Kellermann <max@duempel.org> | 2014-01-23 21:21:27 +0100 |
---|---|---|
committer | Max Kellermann <max@duempel.org> | 2014-01-23 21:22:52 +0100 |
commit | 53a13e8bc6da1f7a795a8d585974d917ffcb600c (patch) | |
tree | a4be817f8fc62d5fc75bf9d6b07b69bf53190269 /src/DetachedSong.cxx | |
parent | f3f5e2e16231f8b7bef055ca1269611bcbbfcc8b (diff) | |
download | mpd-53a13e8bc6da1f7a795a8d585974d917ffcb600c.tar.gz mpd-53a13e8bc6da1f7a795a8d585974d917ffcb600c.tar.xz mpd-53a13e8bc6da1f7a795a8d585974d917ffcb600c.zip |
DetachedSong: un-inline the destructor
Reduce bloat.
Diffstat (limited to '')
-rw-r--r-- | src/DetachedSong.cxx | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/src/DetachedSong.cxx b/src/DetachedSong.cxx index 6a54bc8ad..8882d2863 100644 --- a/src/DetachedSong.cxx +++ b/src/DetachedSong.cxx @@ -30,6 +30,11 @@ DetachedSong::DetachedSong(const LightSong &other) mtime(other.mtime), start_ms(other.start_ms), end_ms(other.end_ms) {} +DetachedSong::~DetachedSong() +{ + /* this destructor exists here just so it won't get inlined */ +} + bool DetachedSong::IsRemote() const { |