From 71360a64160e398e48bcf1abaa754360d8af898e Mon Sep 17 00:00:00 2001 From: MihailRis Date: Sat, 10 Aug 2024 05:55:19 +0300 Subject: [PATCH] fix macos build --- src/graphics/core/ImageData.cpp | 1 + src/voxels/ChunksStorage.cpp | 2 ++ 2 files changed, 3 insertions(+) diff --git a/src/graphics/core/ImageData.cpp b/src/graphics/core/ImageData.cpp index 5d33383a..ccf9f908 100644 --- a/src/graphics/core/ImageData.cpp +++ b/src/graphics/core/ImageData.cpp @@ -3,6 +3,7 @@ #include #include #include +#include ImageData::ImageData(ImageFormat format, uint width, uint height) : format(format), width(width), height(height) { diff --git a/src/voxels/ChunksStorage.cpp b/src/voxels/ChunksStorage.cpp index f1e7d841..9bc0a4f6 100644 --- a/src/voxels/ChunksStorage.cpp +++ b/src/voxels/ChunksStorage.cpp @@ -1,5 +1,7 @@ #include "ChunksStorage.hpp" +#include + #include "content/Content.hpp" #include "debug/Logger.hpp" #include "files/WorldFiles.hpp"