Commit b68c32ad by Jason Merrill

new

From-SVN: r18638
parent 22531e51
// Build don't link:
template <class T, class Allocator>
struct __vector_alloc_base
{
typedef int allocator_type;
};
template <class T>
struct vector : __vector_alloc_base<T,int>
{
typedef short allocator_type;
explicit vector(const allocator_type& a = allocator_type()) {}
};
template <class T> combine { };
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment