fixed unused var warning
[deb_libcec.git] / src / lib / platform / threads / mutex.h
index cf3521585112a2b873b4438e2dad699c107b2df8..6fc57d140bcdf183a0745fa7d52d3b54a23c00c0 100644 (file)
@@ -51,7 +51,7 @@ namespace PLATFORM
 
   private:
     inline PreventCopy(const PreventCopy &c) { *this = c; }
-    inline PreventCopy &operator=(const PreventCopy &c){ return *this; }
+    inline PreventCopy &operator=(const PreventCopy & UNUSED(c)){ return *this; }
   };
 
   template <typename _Predicate>