OpenGEX: Use C++11 range-based for loop
authorTuro Lamminen <turotl@gmail.com>
Sun, 22 May 2016 09:27:26 +0000 (12:27 +0300)
committerTuro Lamminen <turotl@gmail.com>
Mon, 23 May 2016 14:33:49 +0000 (17:33 +0300)
code/OpenGEXImporter.cpp

index cad3322..d99dc33 100644 (file)
@@ -236,8 +236,8 @@ OpenGEXImporter::VertexContainer::~VertexContainer() {
     delete[] m_vertices;
     delete[] m_normals;
     
-    for( size_t i = 0; i < AI_MAX_NUMBER_OF_TEXTURECOORDS; i++ ) {
-        delete [] m_textureCoords[ i ];
+    for(auto &texcoords : m_textureCoords) {
+        delete [] texcoords;
     }
 }