aboutsummaryrefslogtreecommitdiffstats
path: root/src/tag/TagBuilder.hxx
diff options
context:
space:
mode:
authorMax Kellermann <max@duempel.org>2013-12-03 12:08:54 +0100
committerMax Kellermann <max@duempel.org>2013-12-03 12:09:21 +0100
commita5574f9189f67e673463cde3d4aa629e638cf298 (patch)
tree96cc5034729fbc05537feba411ce621b5e55b4c8 /src/tag/TagBuilder.hxx
parentba61a928971f248620a71663ab8d5a42dc31cc90 (diff)
downloadmpd-a5574f9189f67e673463cde3d4aa629e638cf298.tar.gz
mpd-a5574f9189f67e673463cde3d4aa629e638cf298.tar.xz
mpd-a5574f9189f67e673463cde3d4aa629e638cf298.zip
TagBuilder: implement the assignment operator
Diffstat (limited to '')
-rw-r--r--src/tag/TagBuilder.hxx3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/tag/TagBuilder.hxx b/src/tag/TagBuilder.hxx
index 52ccf466c..f21b818bb 100644
--- a/src/tag/TagBuilder.hxx
+++ b/src/tag/TagBuilder.hxx
@@ -63,11 +63,12 @@ public:
}
TagBuilder(const TagBuilder &other) = delete;
- TagBuilder &operator=(const TagBuilder &other) = delete;
TagBuilder(const Tag &other);
TagBuilder(Tag &&other);
+ TagBuilder &operator=(const TagBuilder &other);
+
/**
* Returns true if the tag contains no items. This ignores the "time"
* attribute.