parent
f29af1abc0
commit
aa18e8a2a5
|
@ -971,8 +971,7 @@ void Importer::GetExtensionList(aiString& szOut) const
|
||||||
}
|
}
|
||||||
|
|
||||||
// List can be empty
|
// List can be empty
|
||||||
if(str.size() > 0)
|
if( !str.empty() ) {
|
||||||
{
|
|
||||||
for (std::set<std::string>::const_iterator it = str.begin();; ) {
|
for (std::set<std::string>::const_iterator it = str.begin();; ) {
|
||||||
szOut.Append("*.");
|
szOut.Append("*.");
|
||||||
szOut.Append((*it).c_str());
|
szOut.Append((*it).c_str());
|
||||||
|
|
Loading…
Reference in New Issue