mirror of
https://github.com/overte-org/overte.git
synced 2025-08-06 20:58:38 +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();
|
auto formats = QImageReader::supportedImageFormats();
|
||||||
QStringList stringFormats;
|
QStringList stringFormats;
|
||||||
std::transform(formats.begin(), formats.end(), std::back_inserter(stringFormats),
|
std::transform(formats.begin(), formats.end(), std::back_inserter(stringFormats),
|
||||||
[](auto& format) -> QString { return format; });
|
[](QByteArray& format) -> QString { return format; });
|
||||||
return stringFormats;
|
return stringFormats;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue