mirror of
https://thingvellir.net/git/overte
synced 2025-03-27 23:52:03 +01: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