common: uuid: Return a lower-case hex string in Format

This commit is contained in:
Morph 2021-07-26 23:54:59 -04:00
parent 7e272d3cd8
commit b9b48aee7d
3 changed files with 15 additions and 15 deletions

View file

@ -18,7 +18,7 @@ UUID UUID::Generate() {
}
std::string UUID::Format() const {
return fmt::format("0x{:016X}{:016X}", uuid[1], uuid[0]);
return fmt::format("{:016x}{:016x}", uuid[1], uuid[0]);
}
std::string UUID::FormatSwitch() const {