2012-01-13 Paul Thomas <pault@gcc.gnu.org>
[official-gcc.git] / libstdc++-v3 / src / string-inst.cc
blob879ccec7e8ddfcfff6367a46772a69b420090f48
1 // Components for manipulating sequences of characters -*- C++ -*-
3 // Copyright (C) 1997, 1998, 2009, 1999, 2000, 2001, 2002, 2003, 2004, 2005, 2006
4 // Free Software Foundation, Inc.
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
9 // Free Software Foundation; either version 3, or (at your option)
10 // any later version.
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.
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.
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/>.
27 // ISO C++ 14882: 21 Strings library
30 // Written by Jason Merrill based upon the specification by Takanori Adachi
31 // in ANSI X3J16/94-0013R2. Rewritten by Nathan Myers.
33 #include <string>
35 // Instantiation configuration.
36 #ifndef C
37 # define C char
38 #endif
40 namespace std _GLIBCXX_VISIBILITY(default)
42 _GLIBCXX_BEGIN_NAMESPACE_VERSION
44 typedef basic_string<C> S;
46 template class basic_string<C>;
47 template S operator+(const C*, const S&);
48 template S operator+(C, const S&);
49 template S operator+(const S&, const S&);
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
54 template
55 S::basic_string(C*, C*, const allocator<C>&);
57 template
58 S::basic_string(const C*, const C*, const allocator<C>&);
60 template
61 S::basic_string(S::iterator, S::iterator, const allocator<C>&);
63 template
64 C*
65 S::_S_construct(S::iterator, S::iterator,
66 const allocator<C>&, forward_iterator_tag);
68 template
70 S::_S_construct(C*, C*, const allocator<C>&, forward_iterator_tag);
72 template
74 S::_S_construct(const C*, const C*, const allocator<C>&,
75 forward_iterator_tag);
77 _GLIBCXX_END_NAMESPACE_VERSION
78 } // namespace
80 namespace __gnu_cxx _GLIBCXX_VISIBILITY(default)
82 _GLIBCXX_BEGIN_NAMESPACE_VERSION
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&);
88 _GLIBCXX_END_NAMESPACE_VERSION
89 } // namespace