Fix an unreferenced formal parameter warning on MSVC when no exporter is built

pull/3391/head
Denis Blank 2020-09-05 23:17:11 +02:00
parent 9ce0671134
commit f3b25b999b
1 changed files with 2 additions and 0 deletions

View File

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