Constructors and destructor
| 270 | |
| 271 | // Constructors and destructor |
| 272 | MultiMapTree(const Compare& comp = Compare(), const Allocator& alloc = Allocator()) |
| 273 | : mTree(PairCompareWithId(comp), alloc) {} |
| 274 | |
| 275 | MultiMapTree(const MultiMapTree& other) FL_NOEXCEPT = default; |
| 276 | MultiMapTree& operator=(const MultiMapTree& other) FL_NOEXCEPT = default; |
nothing calls this directly
no test coverage detected