Merge branch 'master' into fix-scale-msg

This commit is contained in:
Kim Kulling
2021-05-04 08:13:12 +02:00
committed by GitHub
59 changed files with 1333 additions and 483 deletions

View File

@@ -271,7 +271,7 @@ std::string BaseImporter::GetExtension(const std::string &file) {
// no file extension at all
if (pos == std::string::npos) {
return "";
return std::string();
}
// thanks to Andy Maloney for the hint