summaryrefslogtreecommitdiffstats
path: root/src/common/quaternion.h
diff options
context:
space:
mode:
authorLioncash <mathew1800@gmail.com>2019-02-27 04:31:15 +0100
committerLioncash <mathew1800@gmail.com>2019-02-27 04:31:17 +0100
commita1574aabd510d5fdc3842780b1d833aa2fb8eac6 (patch)
treea8e990d67681629fd5383263180cbceb85582695 /src/common/quaternion.h
parentMerge pull request #2164 from ReinUsesLisp/configure-blit (diff)
downloadyuzu-a1574aabd510d5fdc3842780b1d833aa2fb8eac6.tar
yuzu-a1574aabd510d5fdc3842780b1d833aa2fb8eac6.tar.gz
yuzu-a1574aabd510d5fdc3842780b1d833aa2fb8eac6.tar.bz2
yuzu-a1574aabd510d5fdc3842780b1d833aa2fb8eac6.tar.lz
yuzu-a1574aabd510d5fdc3842780b1d833aa2fb8eac6.tar.xz
yuzu-a1574aabd510d5fdc3842780b1d833aa2fb8eac6.tar.zst
yuzu-a1574aabd510d5fdc3842780b1d833aa2fb8eac6.zip
Diffstat (limited to 'src/common/quaternion.h')
-rw-r--r--src/common/quaternion.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/common/quaternion.h b/src/common/quaternion.h
index c528c0b68..1c304b048 100644
--- a/src/common/quaternion.h
+++ b/src/common/quaternion.h
@@ -6,7 +6,7 @@
#include "common/vector_math.h"
-namespace Math {
+namespace Common {
template <typename T>
class Quaternion {
@@ -46,4 +46,4 @@ inline Quaternion<float> MakeQuaternion(const Math::Vec3<float>& axis, float ang
return {axis * std::sin(angle / 2), std::cos(angle / 2)};
}
-} // namespace Math
+} // namespace Common