1
0
mirror of https://git.suyu.dev/suyu/suyu synced 2025-08-25 21:46:38 -05:00

Merge pull request #6742 from Morph1984/uuid

common: uuid: Return a lower-case hex string in Format
This commit is contained in:
bunnei
2021-07-29 09:37:15 -07:00
committed by GitHub
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 {