implict vector conversion fix
This commit is contained in:
parent
1c2ca715a6
commit
d81da8b0b6
1 changed files with 0 additions and 8 deletions
|
|
@ -291,14 +291,6 @@ namespace Crafter {
|
||||||
this->v[i] /= b;
|
this->v[i] /= b;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
template <std::uint32_t BAlignment>
|
|
||||||
operator Vector<T, Len, BAlignment>() const {
|
|
||||||
Vector<T, Len, BAlignment> returnVector;
|
|
||||||
for(std::uint32_t i = 0; i < Len; i++) {
|
|
||||||
returnVector.v[i] = this->v[i];
|
|
||||||
}
|
|
||||||
return returnVector;
|
|
||||||
}
|
|
||||||
|
|
||||||
template <typename BT>
|
template <typename BT>
|
||||||
constexpr bool operator==(BT b) const {
|
constexpr bool operator==(BT b) const {
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue