From-SVN: r18638
This commit is contained in:
Jason Merrill 1998-03-16 19:19:43 -05:00
parent 22531e51c3
commit b68c32add4
2 changed files with 15 additions and 0 deletions

View File

@ -0,0 +1,14 @@
// 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()) {}
};

View File

@ -0,0 +1 @@
template <class T> combine { };