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 7b3de466bf
commit 84775f9875

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.
}