Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Sourceannotations.h ? C++ [closed]

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.

like image 913
Chris_45 Avatar asked Feb 01 '10 13:02

Chris_45


1 Answers

Faced the same problem. It was due to a stray character 'F'. When pressing Ctrl + F to find something, the Ctrl somehow wasn't detected and instead, an 'F' was added at the top of the file.

Diff with your previous version and remove any stray characters!

like image 68
Pramod Avatar answered Sep 27 '22 17:09

Pramod