Commit 032f47c0 authored by Max Kellermann's avatar Max Kellermann

lib/xiph/FlacMetadataIterator: disallow copying

parent 1f4e4dd9
......@@ -39,6 +39,9 @@ public:
::FLAC__metadata_iterator_delete(iterator);
}
FlacMetadataIterator(const FlacMetadataIterator &) = delete;
FlacMetadataIterator &operator=(const FlacMetadataIterator &) = delete;
bool Next() noexcept {
return ::FLAC__metadata_iterator_next(iterator);
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment