What is the reason for the following warning in some C++ compilers?
No newline at end of file
Why should I have an empty line at the end of a source/header file?
|
What is the reason for the following warning in some C++ compilers?
Why should I have 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. Edit: Just wanted to point any interested parties to James' answer below. While The above answer is still correct for C the new C++ standard (C++11) has been changed so that this warning should no longer be issued if using C++ and a C++11 conformant compiler. From C++11 standard via James' post:
|
|||||||||||||
|
|
C++ Standard [2.1.1.2] declares:
|
|||
|
|
|
The requirement that every source file end with a non-escaped newline was removed in C++11. The specification now reads:
A conforming compiler should no longer issue this warning (at least not when compiling in C++11 mode, if the compiler has modes for different revisions of the language specification). |
|||||||||||||
|
|
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. |
|||
|
|
|
I am using c-free IDE version 5.0,in my progrm either of 'c++' or 'c' language i was getting same problem.Just at the end of the program i.e. last line of the program(after braces of function it may be main or any function),press enter-line no. will be increased by 1.then execute the same program,it will run without error. |
|||
|
|
|
This warning might also help to indicate that a file could have been truncated somehow. It's true that the compiler will probably throw a compiler error anyway - especially if it's in the middle of a function - or perhaps a linker error, but these could be more cryptic, and aren't guaranteed to occur. Of course this warning also isn't guaranteed if the file is truncated immediately after a newline, but it could still catch some cases that other errors might miss, and gives a stronger hint to the problem. |
|||
|
|
|
That's not an error. It's just a warning. Open the file in an editor, go to the last line of the file, and hit enter to add a blank line to the end of the file. Though, besides that, you should be using |
||||
|
|
|
a missing new line at the end can really cause a lot trouble in c++. here is a simple example of error: use visual c++, create a class header -with no ";" at the end of file - include it in a cpp, define constructor first in this cpp. it gives error like: "constructor cannot have a return value" such a silly error takes your days to solve. problem is that, you've forgotten to enter ";" at the end of header. gcc solves this compilation problem by forcing you to enter a new line to each file. So that there is no problem when it is included somewhere. |
|||||
|
cata file and it does not have a trailing newline as the new shell prompt will appear after the last line of the file (i.e. not in column 0) – ThiefMaster♦ Nov 20 '11 at 21:12