Commit 9b30b506 by Mark Mitchell Committed by Mark Mitchell

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

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

From-SVN: r39465
parent 3418dd3a
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.
......
......@@ -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
......
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