update assimp to 5.2.5 Bugfix-Release

This commit is contained in:
AzaezelX 2023-05-28 11:19:45 -05:00
parent 360edf18a1
commit c3f53b99ea
886 changed files with 7946 additions and 524449 deletions

View file

@ -125,10 +125,10 @@ public:
ai_assert(expect);
fseek(actual,0,SEEK_END);
lengths.push(std::make_pair(static_cast<uint32_t>(ftell(actual)),0));
lengths.emplace(static_cast<uint32_t>(ftell(actual)),0);
fseek(actual,0,SEEK_SET);
history.push_back(HistoryEntry("---",PerChunkCounter()));
history.emplace_back("---",PerChunkCounter());
}
public:
@ -144,7 +144,7 @@ public:
}
else history.back().second[s] = 0;
history.push_back(HistoryEntry(s,PerChunkCounter()));
history.emplace_back(s,PerChunkCounter());
debug_trace.push_back("PUSH " + s);
}
@ -158,7 +158,7 @@ public:
/* push current chunk length and start offset on top of stack */
void push_length(uint32_t nl, uint32_t start) {
lengths.push(std::make_pair(nl,start));
lengths.emplace(nl,start);
++cnt_chunks;
}
@ -569,8 +569,7 @@ public:
{}
//
~sliced_chunk_reader() {
}
~sliced_chunk_reader() = default;
public: