xref: /netbsd-src/external/gpl3/gcc/dist/libstdc++-v3/src/c++98/misc-inst.cc (revision b1e838363e3c6fc78a55519254d99869742dd33c)
1 // Explicit instantiation file.
2 
3 // Copyright (C) 1997-2022 Free Software Foundation, Inc.
4 //
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)
9 // any later version.
10 
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.
15 
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.
19 
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/>.
24 
25 //
26 // ISO C++ 14882:
27 //
28 
29 #if __cplusplus != 199711L
30 # error This file must be compiled as C++98
31 #endif
32 
33 #define _GLIBCXX_USE_CXX11_ABI 1
34 #define _GLIBCXX_DISAMBIGUATE_REPLACE_INST 1
35 #include <string>
36 #include <istream>
37 #include <ostream>
38 
39 namespace std _GLIBCXX_VISIBILITY(default)
40 {
41 _GLIBCXX_BEGIN_NAMESPACE_VERSION
42 
43 #if _GLIBCXX_USE_CXX11_ABI
44   // C++98 members that are not instantiated by src/c++11/string-inst.cc
45   // because they changed in C++11 to take const_iterator parameters.
46   template string::iterator string::erase(iterator);
47   template string::iterator string::erase(iterator, iterator);
48   template void string::insert(iterator, size_type, char);
49   template void string::insert(iterator, iterator, iterator);
50   template string::iterator string::insert(iterator, char);
51   template string& string::replace(iterator, iterator, const string&);
52   template string&
53   string::replace(iterator, iterator, const char*, size_type);
54   template string& string::replace(iterator, iterator, const char*);
55   template string& string::replace(iterator, iterator, size_type, char);
56   template string& string::replace(iterator, iterator, char*, char*);
57   template string&
58   string::replace(iterator, iterator, const char*, const char*);
59   template string& string::replace(iterator, iterator, iterator, iterator);
60   template string&
61   string::replace(iterator, iterator, const_iterator, const_iterator);
62 
63 #ifdef _GLIBCXX_USE_WCHAR_T
64   template wstring::iterator wstring::erase(iterator);
65   template wstring::iterator wstring::erase(iterator, iterator);
66   template void wstring::insert(iterator, size_type, wchar_t);
67   template void wstring::insert(iterator, iterator, iterator);
68   template wstring::iterator wstring::insert(iterator, wchar_t);
69   template wstring& wstring::replace(iterator, iterator, const wstring&);
70   template wstring&
71   wstring::replace(iterator, iterator, const wchar_t*, size_type);
72   template wstring& wstring::replace(iterator, iterator, const wchar_t*);
73   template wstring& wstring::replace(iterator, iterator, size_type, wchar_t);
74   template wstring& wstring::replace(iterator, iterator, wchar_t*, wchar_t*);
75   template wstring&
76   wstring::replace(iterator, iterator, const wchar_t*, const wchar_t*);
77   template wstring& wstring::replace(iterator, iterator, iterator, iterator);
78   template wstring&
79   wstring::replace(iterator, iterator, const_iterator, const_iterator);
80 #endif
81 
82   // XXX this doesn't belong in an -inst.cc file
83   // Defined in src/c++98/locale_facets.cc
84   _GLIBCXX_PURE bool
85   __verify_grouping_impl(const char* __grouping, size_t __grouping_size,
86                          const char* __grouping_tmp, size_t __n);
87 
88   bool
__verify_grouping(const char * __grouping,size_t __grouping_size,const string & __grouping_tmp)89   __verify_grouping(const char* __grouping, size_t __grouping_size,
90 		    const string& __grouping_tmp) throw()
91   {
92     return __verify_grouping_impl(__grouping, __grouping_size,
93                                   __grouping_tmp.c_str(),
94                                   __grouping_tmp.size());
95   }
96 #endif
97 
98 _GLIBCXX_END_NAMESPACE_VERSION
99 } // namespace
100