I have a following gcc compilation warning

Posted by thetna on Stack Overflow See other posts from Stack Overflow or by thetna
Published on 2010-03-11T20:51:20Z Indexed on 2010/03/11 20:54 UTC
Read the original article Hit count: 162

Filed under:

symbol.h:179: note: expected ‘uintptr_t *’ but argument is of type ‘PRECEDENCE’

The corresponding code is :

176 void            symbol_SetCount(SYMBOL, unsigned long);
177 unsigned long   symbol_GetCount(SYMBOL);
178 
179 size_t             symbol_Ordering(uintptr_t*, SYMBOL);
180 
181 void            symbol_CheckIndexInRange(int);
182 void            symbol_CheckNoVariable(SYMBOL);

SYMBOL is defined as:

typedef size_t SYMBOL

Any effort will be highly appreciated.

© Stack Overflow or respective owner

Related posts about gcc-warning