What's the reason for the "No newline at end of file" warning in some C++ compilers? What's good about having an empty line at the end of a source\header file?
|
|
Think of some of the problems that can occur if there is no newline. According to the ANSI standard the #include of a file at the beginning inserts the file exactly as it is to the front of the file and does not insert the new line after the "#include " after the contents of the file. So if you include a file with no newline at the end to the parser it will be viewed as if the last line of foo.h is on the same line as the first line of foo.cpp. What if the last line of foo.h was a comment without a new line? Now the first line of foo.cpp is commented out. These are just a couple of examples of the types of problems that can creep up. |
||||
|
|
|
The answer for the "obedient" is "because the Standard says the behavior of a program not ending in newline is undefined" (paraphrased). The answer for the curious is here: http://gcc.gnu.org/ml/gcc/2001-07/msg01120.html. |
||
|
|
|
|
It isn't referring to a blank line, it's whether the last line (which can have content in it) is terminated with a newline. Most text editors will put a newline at the end of the last line of a file, so if the last line doesn't have one, there is a risk that the file has been truncated. However, there are valid reasons why you might not want the newline so it is only a warning, not an error. |
||
|
|
|
|
#include will replace its line with the literal contents of the file. If the file does not end with a newline, the line containing the #include that pulled it in will merge with the next line. |
||
|
|
|
|
C++ Standard [2.1.1.2] declares:
|
||
|
|
|
|
It's (probably) helps the parser only, that's what it says in the standard afaik. Modern IDEs usually put that new line automatically at the end of the file. |
||
|
|
