Fixed linux build issue caused by ommision of <memory> header

This commit is contained in:
Conál 2024-01-23 16:03:00 -05:00
parent e077eeaf5d
commit 0bd5a1780a
2 changed files with 2 additions and 0 deletions

View File

@ -3,6 +3,7 @@
#define VULKAN_HPP_NO_STRUCT_CONSTRUCTORS #define VULKAN_HPP_NO_STRUCT_CONSTRUCTORS
#include <vulkan/vulkan.hpp> #include <vulkan/vulkan.hpp>
#include <memory>
#include <Renderer/RenderPass.hpp> #include <Renderer/RenderPass.hpp>

View File

@ -4,6 +4,7 @@
#include <vulkan/vulkan.hpp> #include <vulkan/vulkan.hpp>
#include <Memory/Image.hpp> #include <Memory/Image.hpp>
#include <memory>
struct CommandBuffer; struct CommandBuffer;