comment out unused variables to fix warnings created by clang

This commit is contained in:
wmayer
2016-12-18 14:20:27 +01:00
parent 76c529d47d
commit 2fe7c2864a

View File

@@ -2750,13 +2750,13 @@ namespace Py
// TMM: now for mapref<T>
template< class T >
bool operator==(const mapref<T>& left, const mapref<T>& right)
bool operator==(const mapref<T>& /*left*/, const mapref<T>& /*right*/)
{
return true; // NOT completed.
}
template< class T >
bool operator!=(const mapref<T>& left, const mapref<T>& right)
bool operator!=(const mapref<T>& /*left*/, const mapref<T>& /*right*/)
{
return true; // not completed.
}