summaryrefslogtreecommitdiffstats
path: root/src/common/uuid.cpp (follow)
Commit message (Collapse)AuthorAgeFilesLines
* Fix potentially uninitialized local variable warningTokarev Artem2023-06-091-1/+1
|
* general: Convert source file copyright comments over to SPDXMorph2022-04-231-3/+2
| | | | | This formats all copyright comments according to SPDX formatting guidelines. Additionally, this resolves the remaining GPLv2 only licensed files by relicensing them to GPLv2.0-or-later.
* common: uuid: Use sizeof(u64) instead of 8 in Hash()Morph2022-02-101-5/+5
|
* common: uuid: Return an invalid UUID if conversion from string failsMorph2022-02-051-14/+39
| | | | | The string constructor of UUID states: Should the input string not meet the above requirements, an assert will be triggered and an invalid UUID is set instead.
* general: Rename NewUUID to UUID, and remove the previous UUID implMorph2022-02-051-42/+143
| | | | This completes the removal of the old UUID implementation.
* common: uuid: Add hex string to UUID constructorMorph2021-08-041-0/+54
| | | | This allows for easily converting a hex string into a Common::UUID, which is backed by a 128 bit unsigned integer.
* common: uuid: Return a lower-case hex string in FormatMorph2021-07-271-1/+1
|
* mii_manager: Cleanup and optimizationZach Hilman2019-04-251-1/+1
|
* common: Extract UUID to its own classZach Hilman2019-04-251-0/+33
Since the Mii database uses UUIDs very similar to the Accounts database, it makes no sense to not share code between them.