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:
parent
3418dd3ac4
commit
9b30b506d6
@ -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.
|
||||
|
@ -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
|
||||
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user