Merge pull request #177 from pkasting/master

Fix clang -Wdeprecated-copy.
This commit is contained in:
Adam Sawicki 2021-06-09 16:42:39 +02:00 committed by GitHub
commit f7f8e8b472
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -4963,6 +4963,7 @@ public:
} }
VmaStlAllocator& operator=(const VmaStlAllocator& x) = delete; VmaStlAllocator& operator=(const VmaStlAllocator& x) = delete;
VmaStlAllocator(const VmaStlAllocator&) = default;
}; };
#if VMA_USE_STL_VECTOR #if VMA_USE_STL_VECTOR