From 67b7d46432dd66cd94571489d231a4795ce4da39 Mon Sep 17 00:00:00 2001 From: Max Kellermann Date: Wed, 8 Feb 2017 09:40:29 +0100 Subject: DetachedSong: remove explicitly-defaulted copy/move constructors Mentioning these doesn't make a difference. --- src/DetachedSong.hxx | 4 ---- 1 file changed, 4 deletions(-) diff --git a/src/DetachedSong.hxx b/src/DetachedSong.hxx index 083cad610..d6fcab698 100644 --- a/src/DetachedSong.hxx +++ b/src/DetachedSong.hxx @@ -79,8 +79,6 @@ class DetachedSong { explicit DetachedSong(const LightSong &other); public: - explicit DetachedSong(const DetachedSong &) = default; - explicit DetachedSong(const char *_uri) :uri(_uri) {} @@ -95,8 +93,6 @@ public: :uri(std::forward(_uri)), tag(std::move(_tag)) {} - DetachedSong(DetachedSong &&) = default; - ~DetachedSong(); gcc_pure -- cgit v1.2.3