From: Duncan P. N. Exon Smith Date: Fri, 20 Jun 2014 21:43:20 +0000 (+0000) Subject: Support: Mark end of namespaces X-Git-Url: http://plrg.eecs.uci.edu/git/?a=commitdiff_plain;h=2d3fb0a1710e88b49b5c254a9e85e560b7eb21f4;p=oota-llvm.git Support: Mark end of namespaces This convinces clang-format to leave a newline. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@211406 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/include/llvm/Support/ScaledNumber.h b/include/llvm/Support/ScaledNumber.h index f6594ec6aa5..b5a1168f67a 100644 --- a/include/llvm/Support/ScaledNumber.h +++ b/include/llvm/Support/ScaledNumber.h @@ -97,8 +97,9 @@ inline std::pair getAdjusted64(uint64_t Digits, int16_t Scale = 0) { return getAdjusted(Digits, Scale); } -} -} + +} // end namespace ScaledNumbers +} // end namespace llvm #endif diff --git a/unittests/Support/ScaledNumberTest.cpp b/unittests/Support/ScaledNumberTest.cpp index d1277d0479a..e6d24d4512f 100644 --- a/unittests/Support/ScaledNumberTest.cpp +++ b/unittests/Support/ScaledNumberTest.cpp @@ -78,4 +78,5 @@ TEST(FloatsTest, getAdjusted) { EXPECT_EQ(getAdjusted64(Max32In64 + 1), SP64(Max32In64 + 1, 0)); EXPECT_EQ(getAdjusted64(UINT64_MAX), SP64(UINT64_MAX, 0)); } -} + +} // end namespace