summaryrefslogtreecommitdiffstats
path: root/src/common/uuid.h (follow)
Commit message (Collapse)AuthorAgeFilesLines
* common/uuid: Add validity checking functions to interfaceLioncash2021-09-221-0/+7
| | | | | Given we have a function to invalidate, we should also have ones to query the validity. Also makes the code more straightforward to read.
* common: uuid: Add hash function for UUIDMorph2021-08-061-0/+11
| | | | Used when UUID is a key in an unordered_map. The hash is produced by XORing the high and low 64-bits of the UUID together.
* common: uuid: Add hex string to UUID constructorMorph2021-08-041-0/+19
| | | | This allows for easily converting a hex string into a Common::UUID, which is backed by a 128 bit unsigned integer.
* uuid: Directly compare UUID instead of checking per elementChloe Marcec2021-07-201-3/+2
| | | | We can now update this for C++20
* core: Silence Wclass-memaccess warningsReinUsesLisp2021-01-151-2/+2
| | | | | This requires making several types trivial and properly initialize them whenever they are called.
* common: Make use of [[nodiscard]] where applicableLioncash2020-08-151-7/+7
| | | | | | Now that clang-format makes [[nodiscard]] attributes format sensibly, we can apply them to several functions within the common library to allow the compiler to complain about any misuses of the functions.
* acc: Return a unique value per account for GetAccountIdDavid Marcec2020-04-291-0/+5
|
* mii: Implement Delete and Destroy fileZach Hilman2019-04-251-5/+6
|
* mii_manager: Cleanup and optimizationZach Hilman2019-04-251-2/+4
|
* common: Extract UUID to its own classZach Hilman2019-04-251-0/+45
Since the Mii database uses UUIDs very similar to the Accounts database, it makes no sense to not share code between them.