lib/xiph/FlacMetadataIterator: disallow copying
This commit is contained in:
parent
1f4e4dd9b3
commit
032f47c0b0
|
@ -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);
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue