From 2fe7c2864abc373153b0e50234915cef4716ce3f Mon Sep 17 00:00:00 2001 From: wmayer Date: Sun, 18 Dec 2016 14:20:27 +0100 Subject: [PATCH] comment out unused variables to fix warnings created by clang --- src/CXX/Python2/Objects.hxx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/CXX/Python2/Objects.hxx b/src/CXX/Python2/Objects.hxx index d7cf2f5050..8351728247 100644 --- a/src/CXX/Python2/Objects.hxx +++ b/src/CXX/Python2/Objects.hxx @@ -2750,13 +2750,13 @@ namespace Py // TMM: now for mapref template< class T > - bool operator==(const mapref& left, const mapref& right) + bool operator==(const mapref& /*left*/, const mapref& /*right*/) { return true; // NOT completed. } template< class T > - bool operator!=(const mapref& left, const mapref& right) + bool operator!=(const mapref& /*left*/, const mapref& /*right*/) { return true; // not completed. }