Merge commit '87138bb'

This commit is contained in:
Phillip Stephens 2019-06-20 15:43:45 -07:00
commit 6d3e97e959
1 changed files with 1 additions and 1 deletions

View File

@ -137,7 +137,7 @@ struct VertexFormatInfo {
VertexFormatInfo(const T& tp) : elementCount(std::extent_v<T>), elements(tp) {}
VertexFormatInfo(std::initializer_list<VertexElementDescriptor> l)
: elementCount(l.size()), elements(l.begin()) {}
: elementCount(l.size()), elements(std::move(l.begin())) {}
};
/** Opaque token for referencing a shader stage usable in a graphics pipeline */