gcc/libstdc++/stlinst.cc
Jody Goldberg 4ef0de1177 bastring.h: Move closer to the draft standard implementation of basic_string by adding 3...
Sun Dec  7 02:34:40 1997  Jody Goldberg	<jodyg@idt.net>

	* libstdc++/std/bastring.h : Move closer to the draft standard
	implementation of basic_string by adding 3 paramter 'Allocator'.
	NOTE: this still differs from the standard in not offering per
	instance allocators.
	* libstdc++/std/bastring.cc : Likewise.
	* libstdc++/stlinst.cc : Handle thread safe allocators if they are the
	default.

From-SVN: r16993
1997-12-07 05:41:01 -05:00

9 lines
265 B
C++

// Instantiation file for the -*- C++ -*- Standard Library allocator templates
// This file is part of the GNU ANSI C++ Library.
#include <alloc.h>
template class __default_alloc_template<__NODE_ALLOCATOR_THREADS, 0>;
template class __malloc_alloc_template<0>;