mirror of
https://github.com/taglib/taglib.git
synced 2025-07-23 07:24:30 -04: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