Merge pull request #3665 from turol/fix-warning

Silence uninitialized variable warning in 3MF importer
pull/3674/head
Turo Lamminen 2021-02-25 11:09:37 +02:00 committed by GitHub
commit 2bac0a6989
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -427,7 +427,7 @@ private:
aiFace face = ReadTriangle(currentNode);
faces.push_back(face);
int pid, p1;
int pid = 0, p1;
bool hasPid = getNodeAttribute(currentNode, D3MF::XmlTag::pid, pid);
bool hasP1 = getNodeAttribute(currentNode, D3MF::XmlTag::p1, p1);