2 A comparison between pointers resulting in an invalid compile time error during AST proccessing.
7 unsigned char *LevelMapGet(void) { return 0; }
9 typedef struct game_data
{
10 unsigned char *current
;
18 if ( mapData
.current
+ 5 >= LevelMapGet() )
21 if ( &mapData
.current
[5] >= LevelMapGet() ) // This comparison failed to compile