Fix unused-parameter warning in pycontainer.swg
diff --git a/Lib/python/pycontainer.swg b/Lib/python/pycontainer.swg
index a7cc605..2ddf4c3 100644
--- a/Lib/python/pycontainer.swg
+++ b/Lib/python/pycontainer.swg
@@ -52,7 +52,7 @@
   struct container_owner {
     // By default, do not add the back-reference (for value types)
     // Specialization below will check the reference for pointer types.
-    static bool back_reference(PyObject* child, PyObject* owner) {
+    static bool back_reference(PyObject* /*child*/, PyObject* /*owner*/) {
       return false;
     }
   };