mirror of
https://github.com/JulianGro/overte.git
synced 2025-04-25 16:55:07 +02:00
remove use of auto in TextureBaker for OS X compile
This commit is contained in:
parent
f2997c0997
commit
3abca67f1a
1 changed files with 1 additions and 1 deletions
|
@ -47,7 +47,7 @@ const QStringList TextureBaker::getSupportedFormats() {
|
|||
auto formats = QImageReader::supportedImageFormats();
|
||||
QStringList stringFormats;
|
||||
std::transform(formats.begin(), formats.end(), std::back_inserter(stringFormats),
|
||||
[](auto& format) -> QString { return format; });
|
||||
[](QByteArray& format) -> QString { return format; });
|
||||
return stringFormats;
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue