From ba2167ef92aa7e569d3492ed349e1da402fff56e Mon Sep 17 00:00:00 2001
From: Tsuda Kageyu <tsuda.kageyu@gmail.com>
Date: Mon, 10 Aug 2015 11:31:35 +0900
Subject: [PATCH] RefCounter should not be copyable.

---
 taglib/toolkit/trefcounter.h | 3 +++
 1 file changed, 3 insertions(+)

diff --git a/taglib/toolkit/trefcounter.h b/taglib/toolkit/trefcounter.h
index e5873ba3..260fa948 100644
--- a/taglib/toolkit/trefcounter.h
+++ b/taglib/toolkit/trefcounter.h
@@ -48,6 +48,9 @@ namespace TagLib
     bool unique() const;
 
   private:
+    RefCounter(const RefCounter &);
+    RefCounter &operator=(const RefCounter &);
+
     class RefCounterPrivate;
     RefCounterPrivate *d;
   };