summaryrefslogtreecommitdiffstats
path: root/src/common/intrusive_red_black_tree.h (follow)
Commit message (Collapse)AuthorAgeFilesLines
* general: fixes for gcc 13Liam2023-04-031-8/+0
|
* Move to Clang Format 15Levi Behunin2023-01-301-9/+11
| | | | | | Depends on https://github.com/yuzu-emu/build-environments/pull/69 clang-15 primary run
* 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: Reduce unused includesameerj2022-03-191-1/+0
|
* common: intrusive_red_black_tree: Various updates.bunnei2022-03-151-181/+210
|
* general: Update style to clang-format-12ameerj2021-09-241-9/+8
|
* fixup! common: intrusive_red_black_tree: Disable static_assert that will not evaluate as constant on MSVC.bunnei2021-05-061-5/+0
|
* common: intrusive_red_black_tree: Disable static_assert that will not evaluate as constant on MSVC.bunnei2021-05-061-0/+4
|
* common/tree: Convert defines over to templatesLioncash2021-01-121-62/+37
| | | | | | | | | | | | | | 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/parent_of_member: Replace TYPED_STORAGE define with template aliasLioncash2021-01-121-2/+2
| | | | Provides the same construct, but makes it obey namespacing.
* common: Introduce useful tree structures.bunnei2021-01-111-0/+627