summaryrefslogtreecommitdiffhomepage
path: root/examples/oculus_glfw_sample/OculusSDK/LibOVR/Include/Extras/OVR_Math.h
diff options
context:
space:
mode:
authorJoshua Reisenauer <[email protected]>2016-06-01 20:17:39 -0700
committerJoshua Reisenauer <[email protected]>2016-06-01 20:17:39 -0700
commitae6adb173b0a89abd5185436029691ae33c1a727 (patch)
tree1e5932f1df42368983844ca16f2c2ddba9cd4b3d /examples/oculus_glfw_sample/OculusSDK/LibOVR/Include/Extras/OVR_Math.h
parent90e1ed2b5e54a9b6c69be3dd2b71d1e4f3632c33 (diff)
parent17878550b1e2dde44fcd1e668c92ca2d96680a28 (diff)
downloadraylib-ae6adb173b0a89abd5185436029691ae33c1a727.tar.gz
raylib-ae6adb173b0a89abd5185436029691ae33c1a727.zip
Merge remote-tracking branch 'refs/remotes/raysan5/develop' into develop
Diffstat (limited to 'examples/oculus_glfw_sample/OculusSDK/LibOVR/Include/Extras/OVR_Math.h')
-rw-r--r--examples/oculus_glfw_sample/OculusSDK/LibOVR/Include/Extras/OVR_Math.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/examples/oculus_glfw_sample/OculusSDK/LibOVR/Include/Extras/OVR_Math.h b/examples/oculus_glfw_sample/OculusSDK/LibOVR/Include/Extras/OVR_Math.h
index 3a8a8045..c182ed5b 100644
--- a/examples/oculus_glfw_sample/OculusSDK/LibOVR/Include/Extras/OVR_Math.h
+++ b/examples/oculus_glfw_sample/OculusSDK/LibOVR/Include/Extras/OVR_Math.h
@@ -1,7 +1,7 @@
/********************************************************************************//**
\file OVR_Math.h
\brief Implementation of 3D primitives such as vectors, matrices.
-\copyright Copyright 2015 Oculus VR, LLC All Rights reserved.
+\copyright Copyright 2014-2016 Oculus VR, LLC All Rights reserved.
*************************************************************************************/
#ifndef OVR_Math_h
@@ -1754,7 +1754,7 @@ public:
: Rotation(s.Rotation), Translation(s.Translation)
{
// Ensure normalized rotation if converting from float to double
- if (sizeof(T) > sizeof(Math<T>::OtherFloatType))
+ if (sizeof(T) > sizeof(typename Math<T>::OtherFloatType))
Rotation.Normalize();
}