[NFC] Small code cleanups in utility.

Fix a few small annoyances in Utility I ran into.

llvm-svn: 348996
This commit is contained in:
Jonas Devlieghere
2018-12-13 00:15:17 +00:00
parent 96929fdd42
commit 65e5e2781f
6 changed files with 9 additions and 11 deletions

View File

@@ -51,9 +51,7 @@ std::string UUID::GetAsString(llvm::StringRef separator) const {
return result;
}
void UUID::Dump(Stream *s) const {
s->PutCString(GetAsString().c_str());
}
void UUID::Dump(Stream *s) const { s->PutCString(GetAsString()); }
static inline int xdigit_to_int(char ch) {
ch = tolower(ch);