Explicit constructors instead of `using Container::Container` otherwise older compilers choke on it (GCC <= 5.5, xcode <= 9.4)
| 18924 | // Explicit constructors instead of `using Container::Container` |
| 18925 | // otherwise older compilers choke on it (GCC <= 5.5, xcode <= 9.4) |
| 18926 | ordered_map() noexcept(noexcept(Container())) : Container{} {} |
| 18927 | explicit ordered_map(const Allocator& alloc) noexcept(noexcept(Container(alloc))) : Container{alloc} {} |
| 18928 | template <class It> |
| 18929 | ordered_map(It first, It last, const Allocator& alloc = Allocator()) |
nothing calls this directly
no outgoing calls
no test coverage detected