merge with master.
[ardour.git] / libs / appleutility / CAReferenceCounted.h
index d57f97c31f1187367004c338386c70e761212c7a..a9c8dccca30c4104146c5ef8692e561cc92e5814 100644 (file)
@@ -70,13 +70,13 @@ public:
                        }
 
 protected:
-    virtual    ~CAReferenceCounted() { }
-       
+       virtual ~CAReferenceCounted() { }
+       CAReferenceCounted(const CAReferenceCounted &) : mRefCount(0) { }
+
 private:
        SInt32          mRefCount;
 
-       CAReferenceCounted(const CAReferenceCounted &a) : mRefCount(0) { }
-       CAReferenceCounted operator=(const CAReferenceCounted &a) { return *this; }
+       CAReferenceCounted operator=(const CAReferenceCounted &) { return *this; }
 };