summaryrefslogtreecommitdiffstats
path: root/src/common/tree.h (follow)
Commit message (Collapse)AuthorAgeFilesLines
* Move to Clang Format 15Levi Behunin2023-01-301-37/+37
| | | | | | Depends on https://github.com/yuzu-emu/build-environments/pull/69 clang-15 primary run
* chore: add missing SPDX tagsAndrea Pappacoda2022-04-281-25/+3
| | | | Follow-up to 99ceb03a1cfcf35968cab589ea188a8c406cda52
* common: tree: Various updates.bunnei2022-03-151-284/+341
|
* common: tree: Avoid a crash on nullptr dereference.bunnei2021-05-211-0/+11
|
* common: tree: Avoid a nullptr dereference.bunnei2021-05-121-1/+1
|
* common/tree: Convert defines over to templatesLioncash2021-01-121-530/+629
| | | | | | | | | | | | | | Reworks the tree header to operate off of templates as opposed to a series of defines. This allows all tree facilities to obey namespacing rules, and also allows this code to be used within modules once compiler support is in place. This also gets rid to use a macro to define functions and structs for necessary data types. With templates, these will be generated when they're actually used, eliminating the need for the separate declaration.
* common/tree: Remove unused splay tree definesLioncash2021-01-121-249/+2
| | | | Makes for less code to take care of.
* common: Introduce useful tree structures.bunnei2021-01-111-0/+822