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?