From ed2354cd9dd8169985ba6d6cd89ceb61a4048346 Mon Sep 17 00:00:00 2001 From: Max Kellermann Date: Fri, 19 Jan 2018 23:39:32 +0100 Subject: [PATCH] SongFilter: allow copying items --- src/SongFilter.hxx | 5 ----- 1 file changed, 5 deletions(-) diff --git a/src/SongFilter.hxx b/src/SongFilter.hxx index e7f4da9ab..d102db94f 100644 --- a/src/SongFilter.hxx +++ b/src/SongFilter.hxx @@ -66,11 +66,6 @@ public: Item(unsigned tag, const char *value, bool fold_case=false); Item(unsigned tag, time_t time); - Item(const Item &other) = delete; - Item(Item &&) = default; - - Item &operator=(const Item &other) = delete; - unsigned GetTag() const { return tag; }