diff options
Diffstat (limited to 'src/DetachedSong.cxx')
-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 { |