mirror of
https://github.com/intel/llvm.git
synced 2026-01-17 14:48:27 +08:00
[NFC] Small code cleanups in utility.
Fix a few small annoyances in Utility I ran into. llvm-svn: 348996
This commit is contained in:
@@ -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);
|
||||
|
||||
Reference in New Issue
Block a user