Add comment to the new VmaVector constructor

See #74
This commit is contained in:
Adam Sawicki 2019-07-26 15:16:04 +02:00
parent b3687caab2
commit 91d019523f

View file

@ -4097,6 +4097,8 @@ public:
{
}
// This version of the constructor is here for compatibility with pre-C++14 std::vector.
// value is unused.
VmaVector(size_t count, const T& value, const AllocatorT& allocator)
: VmaVector(count, allocator) {}