From c3312a9a012e212ae6cdc2a9a14bf8af50f6b13b Mon Sep 17 00:00:00 2001 From: MatthewBeshay <92357869+MatthewBeshay@users.noreply.github.com> Date: Fri, 3 Apr 2026 19:13:25 +1100 Subject: [PATCH] fix: update CI to install libc++ and fix artifact path --- targets/minecraft/world/level/chunk/CompressedTileStorage.cpp | 1 + targets/minecraft/world/level/chunk/storage/ZonedChunkStorage.h | 2 ++ 2 files changed, 3 insertions(+) diff --git a/targets/minecraft/world/level/chunk/CompressedTileStorage.cpp b/targets/minecraft/world/level/chunk/CompressedTileStorage.cpp index 422b6b1ed..7ecf7ab8d 100644 --- a/targets/minecraft/world/level/chunk/CompressedTileStorage.cpp +++ b/targets/minecraft/world/level/chunk/CompressedTileStorage.cpp @@ -1,6 +1,7 @@ #include "CompressedTileStorage.h" #include +#include #include #include #include diff --git a/targets/minecraft/world/level/chunk/storage/ZonedChunkStorage.h b/targets/minecraft/world/level/chunk/storage/ZonedChunkStorage.h index 67ba31063..0011c3356 100644 --- a/targets/minecraft/world/level/chunk/storage/ZonedChunkStorage.h +++ b/targets/minecraft/world/level/chunk/storage/ZonedChunkStorage.h @@ -1,4 +1,6 @@ #pragma once +#include + #include "ChunkStorage.h" #include "java/File.h" #include "minecraft/world/level/chunk/LevelChunk.h"