Fixing declaration/implementation mismatch

I'm not entirely sure whether the declaration is wrong or the implementation, so if I got this backwards, apologies. But, there is presently no implementation of `gb_float33_9` and no declaration of `gb_float33_16`, so I assumed one was supposed to match the other. (I'm not actually using this function, but discovered the missing part when doing some automatic Lua bindings based on importing headers.)
This commit is contained in:
Shane Liesegang 2019-07-10 15:40:28 +02:00 committed by GitHub
parent 5df8d02c8b
commit 3e43c39e47
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -1399,7 +1399,7 @@ gbMat3 *gb_mat3_f(float m[3][3]) { return (gbMat3 *)m; }
gbFloat3 *gb_float33_m(gbMat3 *m) { return (gbFloat3 *)m; }
gbFloat3 *gb_float33_v(gbVec3 m[3]) { return (gbFloat3 *)m; }
gbFloat3 *gb_float33_16(float m[9]) { return (gbFloat3 *)m; }
gbFloat3 *gb_float33_9(float m[9]) { return (gbFloat3 *)m; }
void gb_float33_transpose(float (*vec)[3]) {
int i, j;