Update GLM version

Correctly initialize all values as they are no longer default-initialized
This commit is contained in:
Alexander Bock
2020-02-10 00:09:31 +01:00
parent b96fa43b27
commit 24ce773da9
143 changed files with 499 additions and 569 deletions
@@ -46,8 +46,8 @@ public:
private:
ScaleType _scaleFactor;
ScaleType _friction;
T _targetValue;
T _currentValue;
T _targetValue = T(0);
T _currentValue = T(0);
};
} // namespace openspace::interaction