Title
unordered_multimap constructor accepting an allocator as a single parameter should be explicit
Status
c++11
Section
[unord.multimap]
Submitter
Japan

Created on 2010-08-25.00:00:00 last changed 154 months ago

Messages

Date: 2011-05-21.21:15:19

Proposed resolution:

Add explicit.

namespace std {
template <class Key,
class T,
class Hash = hash<Key>,
class Pred = std::equal_to<Key>,
class Alloc = std::allocator<std::pair<const Key,
T> > >
class unordered_multimap
{
public:
...
explicit unordered_multimap(const Allocator&);
Date: 2010-10-24.03:04:13

[ Resolved in Rapperswil by a motion to directly apply the words from the ballot comment in N3102. ]

Date: 2010-10-24.03:04:13

Addresses JP-11

Constructor accepting an allocator as a single parameter should be qualified as explicit.

History
Date User Action Args
2011-08-23 20:07:26adminsetstatus: wp -> c++11
2010-10-24 03:04:13adminsetmessages: + msg4923
2010-10-24 03:04:13adminsetstatus: open -> wp
2010-10-21 19:47:27adminsetmessages: + msg4841
2010-08-25 00:00:00admincreate