mirror of
https://github.com/Laupetin/OpenAssetTools.git
synced 2026-03-03 19:43:04 +00:00
refactor: fix x64 compilation for ObjLoading
This commit is contained in:
@@ -36,8 +36,7 @@ namespace string_table
|
||||
|
||||
while (csv.NextRow(currentLine))
|
||||
{
|
||||
if (currentLine.size() > maxCols)
|
||||
maxCols = currentLine.size();
|
||||
maxCols = std::max(static_cast<unsigned>(currentLine.size()), maxCols);
|
||||
csvLines.emplace_back(std::move(currentLine));
|
||||
currentLine = std::vector<std::string>();
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user