Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

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)

share|improve this question
VC++ 2005 compiles its fine, no warning emitted. Are you using C++ or C? – Ajay Aug 17 '11 at 18:15
using this in a .c file – user320781 Aug 19 '11 at 17:52

1 Answer

up vote 4 down vote accepted

Your struct should look like this:

struct PointNode {
  int x;
  int y;
  PointNode *next; // remove struct keyword
};

Declare and use like this:

PointNode *pPointHead; // remove struct keyword
pPointHead->next;

When you add the struct keyword, the compiler thinks that you are declaring a new different struct with the same name.

share|improve this answer
cool, that works, thanks! – user320781 Aug 19 '11 at 17:51

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.