generalized gc_allocator copy constructor

This commit is contained in:
beard%netscape.com 2000-05-09 18:32:14 +00:00
Родитель 698cbbf51d
Коммит 8b37e3f091
2 изменённых файлов: 2 добавлений и 2 удалений

Просмотреть файл

@ -120,7 +120,7 @@ namespace JavaScript {
typedef const T &const_reference;
gc_allocator() {}
// template<class U> gc_allocator(const gc_allocator<U>&) {}
template<typename U, typename UTraits> gc_allocator(const gc_allocator<U, UTraits>&) {}
// ~gc_allocator() {}
static pointer address(reference r) { return &r; }

Просмотреть файл

@ -120,7 +120,7 @@ namespace JavaScript {
typedef const T &const_reference;
gc_allocator() {}
// template<class U> gc_allocator(const gc_allocator<U>&) {}
template<typename U, typename UTraits> gc_allocator(const gc_allocator<U, UTraits>&) {}
// ~gc_allocator() {}
static pointer address(reference r) { return &r; }