1 // Explicit instantiation file.
3 // Copyright (C) 1997-2016 Free Software Foundation, Inc.
5 // This file is part of the GNU ISO C++ Library. This library is free
6 // software; you can redistribute it and/or modify it under the
7 // terms of the GNU General Public License as published by the
8 // Free Software Foundation; either version 3, or (at your option)
11 // This library is distributed in the hope that it will be useful,
12 // but WITHOUT ANY WARRANTY; without even the implied warranty of
13 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 // GNU General Public License for more details.
16 // Under Section 7 of GPL version 3, you are granted additional
17 // permissions described in the GCC Runtime Library Exception, version
18 // 3.1, as published by the Free Software Foundation.
20 // You should have received a copy of the GNU General Public License and
21 // a copy of the GCC Runtime Library Exception along with this program;
22 // see the files COPYING3 and COPYING.RUNTIME respectively. If not, see
23 // <http://www.gnu.org/licenses/>.
29 #define _GLIBCXX_USE_CXX11_ABI 1
30 #define _GLIBCXX_DISAMBIGUATE_REPLACE_INST 1
35 namespace std
_GLIBCXX_VISIBILITY(default)
37 _GLIBCXX_BEGIN_NAMESPACE_VERSION
39 // string related to iostreams
42 operator>>(basic_istream
<char>&, string
&);
45 operator<<(basic_ostream
<char>&, const string
&);
48 getline(basic_istream
<char>&, string
&, char);
51 getline(basic_istream
<char>&, string
&);
52 #ifdef _GLIBCXX_USE_WCHAR_T
54 basic_istream
<wchar_t>&
55 operator>>(basic_istream
<wchar_t>&, wstring
&);
57 basic_ostream
<wchar_t>&
58 operator<<(basic_ostream
<wchar_t>&, const wstring
&);
60 basic_istream
<wchar_t>&
61 getline(basic_istream
<wchar_t>&, wstring
&, wchar_t);
63 basic_istream
<wchar_t>&
64 getline(basic_istream
<wchar_t>&, wstring
&);
67 #if _GLIBCXX_USE_CXX11_ABI
68 // C++98 members that are not instantiated by src/c++11/string-inst.cc
69 // because they changed in C++11 to take const_iterator parameters.
70 template string::iterator
string::erase(iterator
);
71 template string::iterator
string::erase(iterator
, iterator
);
72 template void string::insert(iterator
, size_type
, char);
73 template void string::insert(iterator
, iterator
, iterator
);
74 template string::iterator
string::insert(iterator
, char);
75 template string
& string::replace(iterator
, iterator
, const string
&);
77 string::replace(iterator
, iterator
, const char*, size_type
);
78 template string
& string::replace(iterator
, iterator
, const char*);
79 template string
& string::replace(iterator
, iterator
, size_type
, char);
80 template string
& string::replace(iterator
, iterator
, char*, char*);
82 string::replace(iterator
, iterator
, const char*, const char*);
83 template string
& string::replace(iterator
, iterator
, iterator
, iterator
);
85 string::replace(iterator
, iterator
, const_iterator
, const_iterator
);
87 #ifdef _GLIBCXX_USE_WCHAR_T
88 template wstring::iterator
wstring::erase(iterator
);
89 template wstring::iterator
wstring::erase(iterator
, iterator
);
90 template void wstring::insert(iterator
, size_type
, wchar_t);
91 template void wstring::insert(iterator
, iterator
, iterator
);
92 template wstring::iterator
wstring::insert(iterator
, wchar_t);
93 template wstring
& wstring::replace(iterator
, iterator
, const wstring
&);
95 wstring::replace(iterator
, iterator
, const wchar_t*, size_type
);
96 template wstring
& wstring::replace(iterator
, iterator
, const wchar_t*);
97 template wstring
& wstring::replace(iterator
, iterator
, size_type
, wchar_t);
98 template wstring
& wstring::replace(iterator
, iterator
, wchar_t*, wchar_t*);
100 wstring::replace(iterator
, iterator
, const wchar_t*, const wchar_t*);
101 template wstring
& wstring::replace(iterator
, iterator
, iterator
, iterator
);
103 wstring::replace(iterator
, iterator
, const_iterator
, const_iterator
);
106 // XXX this doesn't belong in an -inst.cc file
107 // Defined in src/c++98/locale_facets.cc
109 __verify_grouping_impl(const char* __grouping
, size_t __grouping_size
,
110 const char* __grouping_tmp
, size_t __n
);
113 __verify_grouping(const char* __grouping
, size_t __grouping_size
,
114 const string
& __grouping_tmp
) throw()
116 return __verify_grouping_impl(__grouping
, __grouping_size
,
117 __grouping_tmp
.c_str(),
118 __grouping_tmp
.size());
122 _GLIBCXX_END_NAMESPACE_VERSION