MCPcopy Create free account
hub / github.com/assimp/assimp / DeleteImporterInstanceList

Function DeleteImporterInstanceList

code/Common/ImporterRegistry.cpp:394–399  ·  view source on GitHub ↗

will delete all registered importers. */

Source from the content-addressed store, hash-verified

392
393/** will delete all registered importers. */
394void DeleteImporterInstanceList(std::vector<BaseImporter *> &deleteList) {
395 for (size_t i = 0; i < deleteList.size(); ++i) {
396 delete deleteList[i];
397 deleteList[i] = nullptr;
398 } //for
399}
400
401} // namespace Assimp

Callers 2

aiGetImporterDescFunction · 0.85
~ImporterMethod · 0.85

Calls 1

sizeMethod · 0.45

Tested by

no test coverage detected