Explicit constructors instead of `using Container::Container` otherwise older compilers choke on it (GCC <= 5.5, xcode <= 9.4)
| 16415 | // Explicit constructors instead of `using Container::Container` |
| 16416 | // otherwise older compilers choke on it (GCC <= 5.5, xcode <= 9.4) |
| 16417 | ordered_map(const Allocator& alloc = Allocator()) : Container{alloc} {} |
| 16418 | template <class It> |
| 16419 | ordered_map(It first, It last, const Allocator& alloc = Allocator()) |
| 16420 | : Container{first, last, alloc} {} |
nothing calls this directly
no outgoing calls
no test coverage detected