Fix build error/warning

This commit is contained in:
sabrina-shanman 2019-11-12 09:52:58 -08:00
parent 2169952613
commit f39121c53b
2 changed files with 0 additions and 2 deletions

View file

@ -488,7 +488,6 @@ bool OBJSerializer::parseOBJGroup(OBJTokenizer& tokenizer, const hifi::VariantHa
FaceGroup faces;
HFMMesh& mesh = hfmModel.meshes[0];
mesh.parts.push_back(HFMMeshPart());
HFMMeshPart& meshPart = mesh.parts.back();
bool sawG = false;
bool result = true;
int originalFaceCountForDebugging = 0;

View file

@ -149,7 +149,6 @@ void vhacd::VHACDUtil::fattenMesh(const HFMMesh& mesh, const glm::mat4& modelOff
result.vertices << p3; // add the new point to the result mesh
HFMMeshPart newMeshPart;
setMeshPartDefaults(newMeshPart, "unknown");
newMeshPart.triangleIndices << index0 << index1 << index2;
newMeshPart.triangleIndices << index0 << index3 << index1;
newMeshPart.triangleIndices << index1 << index3 << index2;