summaryrefslogtreecommitdiff
path: root/lib
diff options
context:
space:
mode:
authorLéo Lam <leo@leolam.fr>2022-01-16 02:36:23 +0100
committerLéo Lam <leo@leolam.fr>2022-01-16 02:36:36 +0100
commitb7b9da8d92bd21f4aea9075fdddffa2d85898bfa (patch)
tree380527acf9a157f852b8dfc56dbabee570814f8f /lib
parent91dbd90f856e0db41ce1872fd9222e0bae642d4b (diff)
Havok: Fix missing parenthesis in comment
Diffstat (limited to 'lib')
-rw-r--r--lib/hkStubs/Havok/Common/Base/Math/Vector/hkVector4f.inl2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/hkStubs/Havok/Common/Base/Math/Vector/hkVector4f.inl b/lib/hkStubs/Havok/Common/Base/Math/Vector/hkVector4f.inl
index 3b3bcec2..bb99d27a 100644
--- a/lib/hkStubs/Havok/Common/Base/Math/Vector/hkVector4f.inl
+++ b/lib/hkStubs/Havok/Common/Base/Math/Vector/hkVector4f.inl
@@ -23,7 +23,7 @@ inline hkVector4f& hkVector4f::operator=(hkVector4fParameter other) {
inline void hkVector4f::set(hkFloat32 x, hkFloat32 y, hkFloat32 z, hkFloat32 w) {
#ifdef HK_VECTOR4F_AARCH64_NEON
- // Annoyingly, v = {x, y, z, w} and vcombine_f32({x, y}, {z, w} lead to different codegen.
+ // Annoyingly, v = {x, y, z, w} and vcombine_f32({x, y}, {z, w}) lead to different codegen.
// It is unclear why Havok decided to split the load in two parts.
v = vcombine_f32(float32x2_t{x, y}, float32x2_t{z, w});
#else