From a355fdf0bd53c3a96fa8d4ac1f9b77f7f081099a Mon Sep 17 00:00:00 2001 From: Thompson Lee Date: Fri, 5 Aug 2016 01:05:19 -0400 Subject: [PATCH] Removed __restrict. --- include/c3d/maths.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/c3d/maths.h b/include/c3d/maths.h index e0d3ec7..b3680b6 100644 --- a/include/c3d/maths.h +++ b/include/c3d/maths.h @@ -296,7 +296,7 @@ void Mtx_Identity(C3D_Mtx* out); * @param[in] a Multiplicand * @param[in] b Multiplier */ -void Mtx_Multiply(C3D_Mtx* __restrict out, const C3D_Mtx* a, const C3D_Mtx* b); +void Mtx_Multiply(C3D_Mtx* out, const C3D_Mtx* a, const C3D_Mtx* b); /** * @brief Inverse a matrix