浏览代码

Fix compier warning

Kim Kulling 3 年之前
父节点
当前提交
58af6ba9db
共有 1 个文件被更改,包括 2 次插入2 次删除
  1. 2 2
      code/PostProcessing/JoinVerticesProcess.cpp

+ 2 - 2
code/PostProcessing/JoinVerticesProcess.cpp

@@ -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>