AK: Set IntrusiveRBTree Node key on insertion instead of construction

This makes the API look much nicer.
This commit is contained in:
Idan Horowitz 2021-09-08 03:07:34 +03:00
commit cb9720baab
Notes: sideshowbarker 2024-07-18 04:25:59 +09:00
3 changed files with 33 additions and 37 deletions

View file

@ -38,6 +38,9 @@ public:
: key(key)
{
}
Node()
{
}
virtual ~Node() {};
};