summaryrefslogtreecommitdiffstats
path: root/src/core/hle/kernel/k_priority_queue.h (unfollow)
Commit message (Collapse)AuthorFilesLines
2020-12-29k_priority_queue: Fix concepts usecomex1-3/+5
- For `std::same_as`, add missing include of `<concepts>`. - For `std::convertible_to`, create a replacement in `common/concepts.h` and use that instead. This would also be found in `<concepts>`, but unlike `std::same_as`, `std::convertible_to` is not yet implemented in libc++, LLVM's STL implementation - not even in master. (In fact, `std::same_as` is the *only* concept currently implemented. For some reason.)
2020-12-06hle: kernel: KPriorityQueue: Various style fixes based on code review feedback.bunnei1-29/+36
2020-12-06hle: kernel: Use C++ style comments in KScheduler, etc.bunnei1-32/+31
2020-12-06common: Port KPriorityQueue from Mesosphere.bunnei1-0/+443