getting a weird warning in Visual Studio 2005:
warning C4133: '=' : incompatible types - from 'PointNode *' to 'PointNode *'
struct definition:
struct PointNode {
int x;
int y;
struct PointNode *next;
};
declaration and usage:
struct PointNode* pPointHead;
...
pPointHead = pPointHead->next;
The warning itself says they are the same types, why would it complain?
(unfortunately i can't tag C4133)