mirror of
https://github.com/taglib/taglib.git
synced 2025-11-15 06:02:53 -05:00
RefCounter should not be copyable.
This commit is contained in:
@ -48,6 +48,9 @@ namespace TagLib
|
||||
bool unique() const;
|
||||
|
||||
private:
|
||||
RefCounter(const RefCounter &);
|
||||
RefCounter &operator=(const RefCounter &);
|
||||
|
||||
class RefCounterPrivate;
|
||||
RefCounterPrivate *d;
|
||||
};
|
||||
|
||||
Reference in New Issue
Block a user