Small ChangeLog tweak.
[official-gcc.git] / libstdc++-v3 / src / c++11 / string-inst.cc
blob3663de4e76e6c3a9f59b20763cde878141845980
1 // Components for manipulating sequences of characters -*- C++ -*-
3 // Copyright (C) 1997-2017 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.
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/>.
26 // ISO C++ 14882: 21 Strings library
29 // Written by Jason Merrill based upon the specification by Takanori Adachi
30 // in ANSI X3J16/94-0013R2. Rewritten by Nathan Myers.
32 #ifndef _GLIBCXX_USE_CXX11_ABI
33 // Instantiations in this file use the new SSO std::string ABI unless included
34 // by another file which defines _GLIBCXX_USE_CXX11_ABI=0.
35 # define _GLIBCXX_USE_CXX11_ABI 1
36 #endif
38 #include <string>
40 // Instantiation configuration.
41 #ifndef C
42 # define C char
43 #endif
45 namespace std _GLIBCXX_VISIBILITY(default)
47 _GLIBCXX_BEGIN_NAMESPACE_VERSION
49 typedef basic_string<C> S;
51 template class basic_string<C>;
52 template S operator+(const C*, const S&);
53 template S operator+(C, const S&);
54 template S operator+(const S&, const S&);
56 // Only one template keyword allowed here.
57 // See core issue #46 (NAD)
58 // http://www.open-std.org/jtc1/sc22/wg21/docs/cwg_closed.html#46
59 template
60 S::basic_string(C*, C*, const allocator<C>&);
62 template
63 S::basic_string(const C*, const C*, const allocator<C>&);
65 template
66 S::basic_string(S::iterator, S::iterator, const allocator<C>&);
68 #if _GLIBCXX_USE_CXX11_ABI
69 template
70 void
71 S::_M_construct(S::iterator, S::iterator, forward_iterator_tag);
73 template
74 void
75 S::_M_construct(S::const_iterator, S::const_iterator,
76 forward_iterator_tag);
78 template
79 void
80 S::_M_construct(C*, C*, forward_iterator_tag);
82 template
83 void
84 S::_M_construct(const C*, const C*, forward_iterator_tag);
86 #else // !_GLIBCXX_USE_CXX11_ABI
88 template
90 S::_S_construct(S::iterator, S::iterator,
91 const allocator<C>&, forward_iterator_tag);
93 template
95 S::_S_construct(C*, C*, const allocator<C>&, forward_iterator_tag);
97 template
99 S::_S_construct(const C*, const C*, const allocator<C>&,
100 forward_iterator_tag);
101 #endif
103 _GLIBCXX_END_NAMESPACE_VERSION
104 } // namespace
106 namespace __gnu_cxx _GLIBCXX_VISIBILITY(default)
108 _GLIBCXX_BEGIN_NAMESPACE_VERSION
110 using std::S;
111 template bool operator==(const S::iterator&, const S::iterator&);
112 template bool operator==(const S::const_iterator&, const S::const_iterator&);
114 _GLIBCXX_END_NAMESPACE_VERSION
115 } // namespace