]> git.ipfire.org Git - thirdparty/gcc.git/blame - libstdc++-v3/src/string-inst.cc
PR libstdc++/36104 part four
[thirdparty/gcc.git] / libstdc++-v3 / src / string-inst.cc
CommitLineData
b2dad0e3
BK
1// Components for manipulating sequences of characters -*- C++ -*-
2
927dc7c6 3// Copyright (C) 1997, 1998, 2009, 1999, 2000, 2001, 2002, 2003, 2004, 2005, 2006
a32e3c09 4// Free Software Foundation, Inc.
b2dad0e3
BK
5//
6// This file is part of the GNU ISO C++ Library. This library is free
7// software; you can redistribute it and/or modify it under the
8// terms of the GNU General Public License as published by the
748086b7 9// Free Software Foundation; either version 3, or (at your option)
b2dad0e3
BK
10// any later version.
11
12// This library is distributed in the hope that it will be useful,
13// but WITHOUT ANY WARRANTY; without even the implied warranty of
14// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15// GNU General Public License for more details.
16
748086b7
JJ
17// Under Section 7 of GPL version 3, you are granted additional
18// permissions described in the GCC Runtime Library Exception, version
19// 3.1, as published by the Free Software Foundation.
20
21// You should have received a copy of the GNU General Public License and
22// a copy of the GCC Runtime Library Exception along with this program;
23// see the files COPYING3 and COPYING.RUNTIME respectively. If not, see
24// <http://www.gnu.org/licenses/>.
b2dad0e3
BK
25
26//
27// ISO C++ 14882: 21 Strings library
28//
29
30// Written by Jason Merrill based upon the specification by Takanori Adachi
31// in ANSI X3J16/94-0013R2. Rewritten by Nathan Myers.
32
54c1bf78 33#include <string>
b2dad0e3
BK
34
35// Instantiation configuration.
36#ifndef C
37# define C char
b2dad0e3
BK
38#endif
39
12ffa228
BK
40namespace std _GLIBCXX_VISIBILITY(default)
41{
42_GLIBCXX_BEGIN_NAMESPACE_VERSION
3cbc7af0 43
b2dad0e3
BK
44 typedef basic_string<C> S;
45
e61c3e8c 46 template class basic_string<C>;
e61c3e8c
BK
47 template S operator+(const C*, const S&);
48 template S operator+(C, const S&);
a7c67c71 49 template S operator+(const S&, const S&);
b2dad0e3 50
e61c3e8c
BK
51 // Only one template keyword allowed here.
52 // See core issue #46 (NAD)
53 // http://anubis.dkuug.dk/jtc1/sc22/wg21/docs/cwg_closed.html#46
bf6adbe2
MM
54 template
55 S::basic_string(C*, C*, const allocator<C>&);
56
ea0c0b6e
BK
57 template
58 S::basic_string(const C*, const C*, const allocator<C>&);
59
b2dad0e3 60 template
e61c3e8c 61 S::basic_string(S::iterator, S::iterator, const allocator<C>&);
9b30b506 62
927dc7c6
PC
63 template
64 C*
65 S::_S_construct(S::iterator, S::iterator,
66 const allocator<C>&, forward_iterator_tag);
67
68 template
69 C*
70 S::_S_construct(C*, C*, const allocator<C>&, forward_iterator_tag);
71
72 template
73 C*
74 S::_S_construct(const C*, const C*, const allocator<C>&,
75 forward_iterator_tag);
76
12ffa228
BK
77_GLIBCXX_END_NAMESPACE_VERSION
78} // namespace
3cbc7af0 79
12ffa228
BK
80namespace __gnu_cxx _GLIBCXX_VISIBILITY(default)
81{
82_GLIBCXX_BEGIN_NAMESPACE_VERSION
285b36d6 83
285b36d6
BK
84 using std::S;
85 template bool operator==(const S::iterator&, const S::iterator&);
86 template bool operator==(const S::const_iterator&, const S::const_iterator&);
3cbc7af0 87
12ffa228
BK
88_GLIBCXX_END_NAMESPACE_VERSION
89} // namespace