Forráskód Böngészése

[F] Wrong type in equation.

smalcom 7 éve
szülő
commit
348b34a2de
1 módosított fájl, 1 hozzáadás és 1 törlés
  1. 1 1
      tools/assimp_qt_viewer/mainwindow.cpp

+ 1 - 1
tools/assimp_qt_viewer/mainwindow.cpp

@@ -301,7 +301,7 @@ QMap<QString, const aiExportFormatDesc*> exportersMap;
 		return;
 	}
 
-	for (int i = 0; i < exporter.GetExportFormatCount(); ++i)
+	for (size_t i = 0; i < exporter.GetExportFormatCount(); ++i)
 	{
 		const aiExportFormatDesc* desc = exporter.GetExportFormatDescription(i);
 		exportersList.push_back(desc->id + QString(": ") + desc->description);