Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Why don't C++0x unordered associative containers use allocator_traits to define their member types pointer and const_pointer?

For example, sequential and ordered associative containers use the following definition:

typedef typename allocator_traits<Allocator>::pointer pointer;
typedef typename allocator_traits<Allocator>::const_pointer const_pointer;

Whereas unordered associative containers use this:

typedef typename Allocator::pointer pointer;
typedef typename Allocator::const_pointer const_pointer;

What am I missing?

share|improve this question

2 Answers

up vote 3 down vote accepted

I don't think you're missing anything. Here's your chance to participate in the standards process. Please submit an issue. The directions on how to do so are here:

http://lwg.github.com/issues/lwg-active.html#submit_issue

I scanned, but did not find an existing issue on this subject.

share|improve this answer

This is now corrected in the current latest draft. For example page 788:

http://www.open-std.org/jtc1/sc22/wg21/docs/papers/2012/n3376.pdf

class unordered_set
{
public:
// types
.... .... .... 
typedef typename allocator_traits<Allocator>::pointer pointer;
typedef typename allocator_traits<Allocator>::const_pointer const_pointer;
.... .... ....
}

Interestingly, en.cppreference.com (incorrectly you could argue) agrees: http://en.cppreference.com/w/cpp/container/unordered_map

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.