summaryrefslogtreecommitdiffstats
path: root/src/common/intrusive_red_black_tree.h (follow)
Commit message (Collapse)AuthorAgeFilesLines
* 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