NOOP, remove trailing tabs/whitespace.
[ardour.git] / libs / appleutility / CAReferenceCounted.h
index 5c9b1168bd752132d6b8ed8ec85fb6e78ddf95db..c17b5c38bd49b1deba9d2999b4c7fe1ca92943d1 100644 (file)
@@ -37,7 +37,7 @@
 */
 /*=============================================================================
        CAReferenceCounted.h
-       
+
 =============================================================================*/
 
 #ifndef __CAReferenceCounted_h__
@@ -57,9 +57,9 @@
 class CAReferenceCounted {
 public:
        CAReferenceCounted() : mRefCount(1) {}
-       
+
        void    retain() { IncrementAtomic(&mRefCount); }
-       
+
        void    release()
                        {
                                        // this returns the ORIGINAL value, not the new one.