Ehllo,
I'm getting some strange warning about this code:
typedef double mat4[4][4];
void mprod4(mat4 r, const mat4 a, const mat4 b)
{
/* yes, function is empty */
}
int main()
{
mat4 mr, ma, mb;
mprod4(mr, ma, mb);
}
gcc output as follows:
$ gcc -o test test.c
test.c: In function 'main':
test.c:13: warning: passing argument 2 of 'mprod4' from incompatible pointer
type
test.c:4: note: expected 'const double (*)[4]' but argument is of type 'double
(*)[4]'
test.c:13: warning: passing argument 3 of 'mprod4' from incompatible pointer
type
test.c:4:
note: expected 'const double (*)[4]' but argument is of type 'double
(*)[4]'
defining the function as:
void mprod4(mat4 r, mat4 a, mat4 b)
{
}
OR defining matrices at main as:
mat4 mr;
const mat4 ma;
const mat4 mb;
OR calling teh function in main as:
mprod4(mr, (const double(*)[4])ma, (const double(*)[4])mb);
OR even defining mat4 as:
typedef double mat4[16];
make teh warning go away. Wat is happening here? Am I doing something invalid?
gcc version is 4.4.3 if relevant.
I also posted on gcc bugzilla: http://gcc.gnu.org/bugzilla/show_bug.cgi?id=47143
My current workaround consist in making ugly macros that cast stuff for me:
#ifndef _NO_UGLY_MATRIX_MACROS
#define mprod4(r, a, b) mprod4(r, (const double(*)[4])a, (const double(*)[4])b)
#endif
Thanks for your attention.
Answer from Joseph S. Myers on gcc bugzilla:
Not a bug. The function parameters are of type "pointer to array[4] of const double" because const on an array type applies to the element type, recursively, and then the outermost array type, only, of a parameter of array type decays to a pointer, and the arguments passed are of type "pointer to array[4] of double" after array-to-pointer decay, and the only case where qualifiers are permitted to be added in assignment, argument passing etc. is qualifiers on the immediate pointer target, not those nested more deeply.
Sounds pretty confusing to me, sounds liek function expects:
pointer to array[4] of const doubles
and we are passing
pointer to const array[4] of doubles
intead.
Or would it be the inverse? Teh warnings suggest that teh function expects a:
const double (*)[4]
which seems to me moar liek a
pointer to const array[4] of doubles
.
I'm really confused with this answer, somebody who can understand what he said could clarify and exemplify?
Thanks again for your attention