mirror of
https://git.huckle.dev/Huckles-Minecraft-Archive/4jcraft.git
synced 2026-06-16 14:11:57 +00:00
refactor: expand AUTO_VAR macro
This commit is contained in:
@@ -267,7 +267,7 @@ void ConsoleSaveFileConverter::ConvertSave(ConsoleSaveFile* sourceSave,
|
||||
// region files
|
||||
std::vector<FileEntry*>* allFilesInSave =
|
||||
sourceSave->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;
|
||||
if (fe != sourceLdatFe) {
|
||||
|
||||
Reference in New Issue
Block a user