[llvm] r365789 - Fix a few 'no newline at end of file' warnings that Xcode emits
Nico Weber via llvm-commits
llvm-commits at lists.llvm.org
Thu Jul 11 08:26:45 PDT 2019
Author: nico
Date: Thu Jul 11 08:26:45 2019
New Revision: 365789
URL: http://llvm.org/viewvc/llvm-project?rev=365789&view=rev
Log:
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!)
Modified:
llvm/trunk/include/llvm/DebugInfo/CodeView/ContinuationRecordBuilder.h
llvm/trunk/lib/DebugInfo/CodeView/DebugSymbolsSubsection.cpp
Modified: llvm/trunk/include/llvm/DebugInfo/CodeView/ContinuationRecordBuilder.h
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/include/llvm/DebugInfo/CodeView/ContinuationRecordBuilder.h?rev=365789&r1=365788&r2=365789&view=diff
==============================================================================
--- llvm/trunk/include/llvm/DebugInfo/CodeView/ContinuationRecordBuilder.h (original)
+++ llvm/trunk/include/llvm/DebugInfo/CodeView/ContinuationRecordBuilder.h Thu Jul 11 08:26:45 2019
@@ -61,4 +61,4 @@ public:
} // namespace codeview
} // namespace llvm
-#endif
\ No newline at end of file
+#endif
Modified: llvm/trunk/lib/DebugInfo/CodeView/DebugSymbolsSubsection.cpp
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/lib/DebugInfo/CodeView/DebugSymbolsSubsection.cpp?rev=365789&r1=365788&r2=365789&view=diff
==============================================================================
--- llvm/trunk/lib/DebugInfo/CodeView/DebugSymbolsSubsection.cpp (original)
+++ llvm/trunk/lib/DebugInfo/CodeView/DebugSymbolsSubsection.cpp Thu Jul 11 08:26:45 2019
@@ -30,4 +30,4 @@ Error DebugSymbolsSubsection::commit(Bin
void DebugSymbolsSubsection::addSymbol(CVSymbol Symbol) {
Records.push_back(Symbol);
Length += Symbol.length();
-}
\ No newline at end of file
+}
More information about the llvm-commits
mailing list