Fix compier warning

pull/4527/head
Kim Kulling 2022-05-14 09:59:07 +02:00 committed by GitHub
parent deb1698cbe
commit 58af6ba9db
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 2 deletions

View File

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