string-inst.cc (string::_M_replace): Explicitly instantiate.

* src/string-inst.cc (string::_M_replace): Explicitly instantiate.
	(string::_S_construct): Likewise.

From-SVN: r39465
This commit is contained in:
Mark Mitchell 2001-02-05 19:46:22 +00:00 committed by Mark Mitchell
parent 3418dd3ac4
commit 9b30b506d6
2 changed files with 19 additions and 0 deletions

View File

@ -1,3 +1,8 @@
2001-02-05 Mark Mitchell <mark@codesourcery.com>
* src/string-inst.cc (string::_M_replace): Explicitly instantiate.
(string::_S_construct): Likewise.
2001-02-05 Gabriel Dos Reis <gdr@codesourcery.com>
* testsuite/config/default.exp: New file.

View File

@ -73,6 +73,20 @@ namespace std
template
S::basic_string(S::iterator, S::iterator, const allocator<C>&);
template
S&
S::_M_replace(S::iterator, S::iterator, C*, C*, forward_iterator_tag);
template
S&
S::_M_replace(S::iterator, S::iterator, const C*, const C*,
forward_iterator_tag);
template
C*
S::_S_construct(const C*, const C*, const allocator<C>&,
forward_iterator_tag);
} // namespace std