Support: Mark end of namespaces

This convinces clang-format to leave a newline.

llvm-svn: 211406
This commit is contained in:
Duncan P. N. Exon Smith 2014-06-20 21:43:20 +00:00
parent 26646108c9
commit d4ea631fec
2 changed files with 5 additions and 3 deletions

View File

@ -97,8 +97,9 @@ inline std::pair<uint64_t, int16_t> getAdjusted64(uint64_t Digits,
int16_t Scale = 0) {
return getAdjusted<uint64_t>(Digits, Scale);
}
}
}
} // end namespace ScaledNumbers
} // end namespace llvm
#endif

View File

@ -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