Fix another mem-leak

pull/4666/head
Kim Kulling 2022-07-31 13:37:42 +02:00
parent c349035cd1
commit dddfb74902
1 changed files with 2 additions and 2 deletions

View File

@ -254,10 +254,10 @@ struct Mesh {
/// Destructor /// Destructor
~Mesh() { ~Mesh() {
/* for (std::vector<Face *>::iterator it = m_Faces.begin(); for (std::vector<Face *>::iterator it = m_Faces.begin();
it != m_Faces.end(); ++it) { it != m_Faces.end(); ++it) {
delete *it; delete *it;
}*/ }
} }
}; };