Commit b000c3fb authored by David Reid's avatar David Reid

Remove some unnecessary volatiles.

parent 4926e118
......@@ -48565,7 +48565,7 @@ MA_API ma_vec3f ma_vec3f_init_3f(float x, float y, float z)
return v;
}
MA_API ma_vec3f ma_vec3f_sub(volatile ma_vec3f a, volatile ma_vec3f b)
MA_API ma_vec3f ma_vec3f_sub(ma_vec3f a, ma_vec3f b)
{
return ma_vec3f_init_3f(
a.x - b.x,
......@@ -48574,7 +48574,7 @@ MA_API ma_vec3f ma_vec3f_sub(volatile ma_vec3f a, volatile ma_vec3f b)
);
}
MA_API ma_vec3f ma_vec3f_neg(volatile ma_vec3f a)
MA_API ma_vec3f ma_vec3f_neg(ma_vec3f a)
{
return ma_vec3f_init_3f(
-a.x,
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment