[llvm] c7b1279 - Support: Add closing namespace comment in raw_ostream_test.cpp, NFC
Duncan P. N. Exon Smith via llvm-commits
llvm-commits at lists.llvm.org
Thu Sep 23 14:00:47 PDT 2021
Author: Duncan P. N. Exon Smith
Date: 2021-09-23T16:59:03-04:00
New Revision: c7b1279a38286194b2f781c821e6eeaa6dd010cf
URL: https://github.com/llvm/llvm-project/commit/c7b1279a38286194b2f781c821e6eeaa6dd010cf
DIFF: https://github.com/llvm/llvm-project/commit/c7b1279a38286194b2f781c821e6eeaa6dd010cf.diff
LOG: Support: Add closing namespace comment in raw_ostream_test.cpp, NFC
The closing namespace comment prevents clang-format from dropping a
blank line after the final test. Also add in a blank line (which
simplifies merging/rebasing/etc. WIP patches).
Added:
Modified:
llvm/unittests/Support/raw_ostream_test.cpp
Removed:
################################################################################
diff --git a/llvm/unittests/Support/raw_ostream_test.cpp b/llvm/unittests/Support/raw_ostream_test.cpp
index d8e17324ecd04..6884ea568ff81 100644
--- a/llvm/unittests/Support/raw_ostream_test.cpp
+++ b/llvm/unittests/Support/raw_ostream_test.cpp
@@ -543,4 +543,5 @@ TEST(raw_ostreamTest, writeToStdOut) {
std::string CapturedStdOut = testing::internal::GetCapturedStdout();
EXPECT_EQ(CapturedStdOut, "HelloWorld");
}
-}
+
+} // namespace
More information about the llvm-commits
mailing list