Fix compier warning

This commit is contained in:
Kim Kulling
2022-05-14 09:59:07 +02:00
committed by GitHub
parent deb1698cbe
commit 58af6ba9db

View File

@@ -223,8 +223,8 @@ void updateXMeshVertices(XMesh *pMesh, std::vector<Vertex> &uniqueVertices) {
// ------------------------------------------------------------------------------------------------
// Unites identical vertices in the given mesh
// combine hashes
inline void hash_combine(std::size_t &seed) {
seed;
inline void hash_combine(std::size_t &) {
// empty
}
template <typename T, typename... Rest>