Merge pull request #1930 from lioncash/common

common/quaternion: Ensure that w is always initialized
This commit is contained in:
bunnei 2018-12-23 14:35:29 -05:00 committed by GitHub
commit 52726342bd
WARNING! Although there is a key with this ID in the database it does not verify this commit! This commit is SUSPICIOUS.
GPG key ID: 4AEE18F83AFDEB23

View file

@ -12,7 +12,7 @@ template <typename T>
class Quaternion { class Quaternion {
public: public:
Math::Vec3<T> xyz; Math::Vec3<T> xyz;
T w; T w{};
Quaternion<decltype(-T{})> Inverse() const { Quaternion<decltype(-T{})> Inverse() const {
return {-xyz, w}; return {-xyz, w};