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.hxx | |
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 'src/DetachedSong.hxx')
-rw-r--r-- | src/DetachedSong.hxx | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/DetachedSong.hxx b/src/DetachedSong.hxx index b2f5196ff..c01f32ea5 100644 --- a/src/DetachedSong.hxx +++ b/src/DetachedSong.hxx @@ -97,6 +97,8 @@ public: DetachedSong(DetachedSong &&) = default; + ~DetachedSong(); + gcc_pure const char *GetURI() const { return uri.c_str(); |