fix
This commit is contained in:
parent
d2343dde82
commit
7ae4f18814
1 changed files with 1 additions and 1 deletions
|
|
@ -269,7 +269,7 @@ namespace Crafter {
|
||||||
operator Vector<T, Len, BAlignment>() const {
|
operator Vector<T, Len, BAlignment>() const {
|
||||||
Vector<T, Len, BAlignment> returnVector;
|
Vector<T, Len, BAlignment> returnVector;
|
||||||
for(std::uint32_t i = 0; i < Len; i++) {
|
for(std::uint32_t i = 0; i < Len; i++) {
|
||||||
returnVector->v[i] = this->v[i];
|
returnVector.v[i] = this->v[i];
|
||||||
}
|
}
|
||||||
return returnVector;
|
return returnVector;
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue