diff options
Diffstat (limited to 'src/tag')
-rw-r--r-- | src/tag/TagItem.hxx | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/tag/TagItem.hxx b/src/tag/TagItem.hxx index 58a8a9e9e..f661a273b 100644 --- a/src/tag/TagItem.hxx +++ b/src/tag/TagItem.hxx @@ -36,6 +36,10 @@ struct TagItem { * the value of this tag; this is a variable length string */ char value[sizeof(long)]; + + TagItem() = default; + TagItem(const TagItem &other) = delete; + TagItem &operator=(const TagItem &other) = delete; } gcc_packed; #endif |