From ffd093c9938c7b25b8723ca7ed039809fe32055a Mon Sep 17 00:00:00 2001 From: duodenim Date: Sat, 19 Aug 2017 16:31:48 -0500 Subject: [PATCH] Fix memcpy and VmaVector compile errors --- src/vk_mem_alloc.h | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/vk_mem_alloc.h b/src/vk_mem_alloc.h index 82563bc..4d73652 100644 --- a/src/vk_mem_alloc.h +++ b/src/vk_mem_alloc.h @@ -718,6 +718,7 @@ void vmaDestroyImage( #include #include +#include /******************************************************************************* CONFIGURATION SECTION @@ -1300,7 +1301,7 @@ public: { if(&rhs != this) { - Resize(rhs.m_Count); + resize(rhs.m_Count); if(m_Count != 0) { memcpy(m_pArray, rhs.m_pArray, m_Count * sizeof(T));