Constructors and destructor
| 165 | |
| 166 | // Constructors and destructor |
| 167 | MultiSetTree(const Compare& comp = Compare(), const Allocator& alloc = Allocator()) |
| 168 | : mTree(KeyCompareWithId(comp), alloc) {} |
| 169 | |
| 170 | MultiSetTree(const MultiSetTree& other) FL_NOEXCEPT = default; |
| 171 | MultiSetTree& operator=(const MultiSetTree& other) FL_NOEXCEPT = default; |
nothing calls this directly
no test coverage detected