views:

388

answers:

4

What is this errormessage in Visual Studio 2008

Error 1 error C2144: syntax error : '__w64 unsigned int' should be preceded by ';' c:\program files\microsoft visual studio 9.0\vc\include\codeanalysis\sourceannotations.h 19 Steg2_Labs

I don't have any headerfiles made myself.

+3  A: 

You are missing a semicolon somewhere before the "integral type" declaration.

Since you say there aren't any other libraries included (written by you) than it must be in the current file and usualy the statement directly before the error line number.

Hassan Syed
A: 

Looks like a missing semicolon in your code. If you post your code, it is easier to say what is wrong.

batbrat
Ok it works now, I was in the headerannotations.h file but I didn't change anything, strange...
Chris_45
Really strange. Are you sure you changed nothing in your source code as well?
batbrat
A: 

missing a semicolon at the end of the code

A: 

Have you played with the project configuration - platform, optimizations, align, etc.? Looks like some clash of configuration options (that is if you haven't written any code to cause this)

tony.ganchev