mirror of
https://github.com/lubosz/overte.git
synced 2025-04-19 17:03:43 +02:00
fix uint warnings
This commit is contained in:
parent
f929fa3bcb
commit
f137fadc98
1 changed files with 1 additions and 1 deletions
|
@ -353,7 +353,7 @@ void OBJReader::parseTextureLine(const QByteArray& textureLine, QByteArray& file
|
|||
std::istringstream iss(textureLine.toStdString());
|
||||
const std::vector<std::string> parser(std::istream_iterator<std::string>{iss}, std::istream_iterator<std::string>());
|
||||
|
||||
int i = 0;
|
||||
uint i = 0;
|
||||
while (i < parser.size()) {
|
||||
if (i + 1 < parser.size() && parser[i][0] == '-') {
|
||||
const std::string& option = parser[i++];
|
||||
|
|
Loading…
Reference in a new issue