Fix some "unused parameter" warnings.

This commit is contained in:
Martin Heistermann
2022-04-06 17:16:59 +02:00
parent c36d8a304c
commit b2bb6a32a7
3 changed files with 3 additions and 3 deletions

View File

@@ -135,7 +135,7 @@ private:
writeValue(_type, _out, _value);
}
template<typename T>
void writeProxy(ValueType _type, std::ostream& _out, T _value, OpenMesh::GenProg::FalseType /*_binary*/) const
void writeProxy(ValueType /*_type*/, std::ostream& _out, T _value, OpenMesh::GenProg::FalseType /*_binary*/) const
{
_out << " " << _value;
}