Fatal Error C1071

unexpected end of file found in comment

The compiler found the end of a file while scanning a comment.

Probably a comment was not terminated. Begin at the end of the file and search backward for the beginning of a comment. A comment begins with /* and ends with */ as in:

/* This is a
comment */

A comment cannot be split across source files.

This error can also be caused by a comment on the last line of a source file that is not followed by a newline character as in:

int i; // error: last line not terminated by newline

To eliminate this error, go to the end of the line and enter a newline.