Fix a few 'no newline at end of file' warnings that Xcode emits

(Xcode even has a snazzy "Fix" button, but clicking that inserts two
newlines. So close!)

llvm-svn: 365789
This commit is contained in:
Nico Weber 2019-07-11 15:26:45 +00:00
parent c5b35e725d
commit 6e0926614f
2 changed files with 2 additions and 2 deletions

View File

@ -61,4 +61,4 @@ public:
} // namespace codeview
} // namespace llvm
#endif
#endif

View File

@ -30,4 +30,4 @@ Error DebugSymbolsSubsection::commit(BinaryStreamWriter &Writer) const {
void DebugSymbolsSubsection::addSymbol(CVSymbol Symbol) {
Records.push_back(Symbol);
Length += Symbol.length();
}
}