]> git.ipfire.org Git - thirdparty/gcc.git/blob - libstdc++-v3/include/precompiled/stdc++.h
Makefile.am (${pch1a_output}): Use gnu++0x flags instead of debug.
[thirdparty/gcc.git] / libstdc++-v3 / include / precompiled / stdc++.h
1 // C++ includes used for precompiling -*- C++ -*-
2
3 // Copyright (C) 2003, 2004, 2005, 2006, 2007, 2008, 2009
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 2, or (at your option)
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
17 // You should have received a copy of the GNU General Public License along
18 // with this library; see the file COPYING. If not, write to the Free
19 // Software Foundation, 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,
20 // USA.
21
22 // As a special exception, you may use this file as part of a free software
23 // library without restriction. Specifically, if other files instantiate
24 // templates or use macros or inline functions from this file, or you compile
25 // this file and link it with other files to produce an executable, this
26 // file does not by itself cause the resulting executable to be covered by
27 // the GNU General Public License. This exception does not however
28 // invalidate any other reasons why the executable file might be covered by
29 // the GNU General Public License.
30
31 /** @file stdc++.h
32 * This is an implementation file for a precompiled header.
33 */
34
35 // 17.4.1.2 Headers
36
37 // C
38 #include <cassert>
39 #include <cctype>
40 #include <cerrno>
41 #include <cfloat>
42 #include <ciso646>
43 #include <climits>
44 #include <clocale>
45 #include <cmath>
46 #include <csetjmp>
47 #include <csignal>
48 #include <cstdarg>
49 #include <cstddef>
50 #include <cstdio>
51 #include <cstdlib>
52 #include <cstring>
53 #include <ctime>
54
55 #ifdef __GXX_EXPERIMENTAL_CXX0X__
56 #include <ccomplex>
57 #include <cfenv>
58 #include <cinttypes>
59 #include <cstdatomic>
60 #include <cstdbool>
61 #include <cstdint>
62 #include <ctgmath>
63 #include <cwchar>
64 #include <cwctype>
65 #endif
66
67 // C++
68 #include <algorithm>
69 #include <bitset>
70 #include <complex>
71 #include <deque>
72 #include <exception>
73 #include <fstream>
74 #include <functional>
75 #include <iomanip>
76 #include <ios>
77 #include <iosfwd>
78 #include <iostream>
79 #include <istream>
80 #include <iterator>
81 #include <limits>
82 #include <list>
83 #include <locale>
84 #include <map>
85 #include <memory>
86 #include <new>
87 #include <numeric>
88 #include <ostream>
89 #include <queue>
90 #include <set>
91 #include <sstream>
92 #include <stack>
93 #include <stdexcept>
94 #include <streambuf>
95 #include <string>
96 #include <typeinfo>
97 #include <utility>
98 #include <valarray>
99 #include <vector>
100
101 #ifdef __GXX_EXPERIMENTAL_CXX0X__
102 #include <array>
103 #include <chrono>
104 #include <condition_variable>
105 #include <forward_list>
106 #include <mutex>
107 #include <random>
108 #include <ratio>
109 #include <regex>
110 #include <system_error>
111 #include <thread>
112 #include <tuple>
113 #include <type_traits>
114 #include <unordered_map>
115 #include <unordered_set>
116 #endif