RefCounter should not be copyable.

This commit is contained in:
Tsuda Kageyu 2015-08-10 11:31:35 +09:00
parent dc0cc4e7fa
commit ba2167ef92

View File

@ -48,6 +48,9 @@ namespace TagLib
bool unique() const;
private:
RefCounter(const RefCounter &);
RefCounter &operator=(const RefCounter &);
class RefCounterPrivate;
RefCounterPrivate *d;
};