mirror of
https://github.com/GPUOpen-LibrariesAndSDKs/VulkanMemoryAllocator
synced 2024-11-05 12:20:07 +00:00
Fix memcpy and VmaVector compile errors
This commit is contained in:
parent
10844a8f1c
commit
ffd093c993
@ -718,6 +718,7 @@ void vmaDestroyImage(
|
||||
|
||||
#include <cstdint>
|
||||
#include <cstdlib>
|
||||
#include <cstring>
|
||||
|
||||
/*******************************************************************************
|
||||
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));
|
||||
|
Loading…
Reference in New Issue
Block a user