mirror of
https://git.huckle.dev/Huckles-Minecraft-Archive/4jcraft.git
synced 2026-06-07 14:06:27 +00:00
refactor: expand AUTO_VAR macro
This commit is contained in:
@@ -857,7 +857,7 @@ void ConsoleSaveFileOriginal::ConvertToLocalPlatform() {
|
||||
// convert each of the region files to the local platform
|
||||
std::vector<FileEntry*>* allFilesInSave =
|
||||
getFilesWithPrefix(std::wstring(L""));
|
||||
for (AUTO_VAR(it, allFilesInSave->begin()); it < allFilesInSave->end();
|
||||
for (auto it = allFilesInSave->begin(); it < allFilesInSave->end();
|
||||
++it) {
|
||||
FileEntry* fe = *it;
|
||||
std::wstring fName(fe->data.filename);
|
||||
|
||||
Reference in New Issue
Block a user