From 55231bb8d3e1a4e2752ac3d444c4287eb0ca4e8b Mon Sep 17 00:00:00 2001 From: void_17 <61356189+void2012@users.noreply.github.com> Date: Fri, 6 Mar 2026 02:11:18 +0700 Subject: Remove AUTO_VAR macro and _toString function (#592) --- Minecraft.World/FlatLayerInfo.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'Minecraft.World/FlatLayerInfo.cpp') diff --git a/Minecraft.World/FlatLayerInfo.cpp b/Minecraft.World/FlatLayerInfo.cpp index 4a4d79dd..331717e2 100644 --- a/Minecraft.World/FlatLayerInfo.cpp +++ b/Minecraft.World/FlatLayerInfo.cpp @@ -63,15 +63,15 @@ void FlatLayerInfo::setStart(int start) wstring FlatLayerInfo::toString() { - wstring result = _toString(id); + wstring result = std::to_wstring(id); if (height > 1) { - result = _toString(height) + L"x" + result; + result = std::to_wstring(height) + L"x" + result; } if (data > 0) { - result += L":" + _toString(data); + result += L":" + std::to_wstring(data); } return result; -- cgit v1.2.3