Browse Source

Merge branch 'master' into collada_animation_ticks_per_sec_issue_3162

Kim Kulling 5 years ago
parent
commit
bd91033172
1 changed files with 2 additions and 0 deletions
  1. 2 0
      code/Common/Exporter.cpp

+ 2 - 0
code/Common/Exporter.cpp

@@ -140,6 +140,8 @@ void ExportAssimp2Json(const char* , IOSystem*, const aiScene* , const Assimp::E
 #endif
 #endif
 
 
 static void setupExporterArray(std::vector<Exporter::ExportFormatEntry> &exporters) {
 static void setupExporterArray(std::vector<Exporter::ExportFormatEntry> &exporters) {
+	(void)exporters;
+
 #ifndef ASSIMP_BUILD_NO_COLLADA_EXPORTER
 #ifndef ASSIMP_BUILD_NO_COLLADA_EXPORTER
 	exporters.push_back(Exporter::ExportFormatEntry("collada", "COLLADA - Digital Asset Exchange Schema", "dae", &ExportSceneCollada));
 	exporters.push_back(Exporter::ExportFormatEntry("collada", "COLLADA - Digital Asset Exchange Schema", "dae", &ExportSceneCollada));
 #endif
 #endif