Import gcc-4.7.2 to new vendor branch
[dragonfly.git] / contrib / gcc-4.7 / libstdc++-v3 / include / precompiled / stdc++.h
1 // C++ includes used for precompiling -*- C++ -*-
2
3 // Copyright (C) 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010, 2011
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.
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 // 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/>.
25
26 /** @file stdc++.h
27  *  This is an implementation file for a precompiled header.
28  */
29
30 // 17.4.1.2 Headers
31
32 // C
33 #ifndef _GLIBCXX_NO_ASSERT
34 #include <cassert>
35 #endif
36 #include <cctype>
37 #include <cerrno>
38 #include <cfloat>
39 #include <ciso646>
40 #include <climits>
41 #include <clocale>
42 #include <cmath>
43 #include <csetjmp>
44 #include <csignal>
45 #include <cstdarg>
46 #include <cstddef>
47 #include <cstdio>
48 #include <cstdlib>
49 #include <cstring>
50 #include <ctime>
51
52 #ifdef __GXX_EXPERIMENTAL_CXX0X__
53 #include <ccomplex>
54 #include <cfenv>
55 #include <cinttypes>
56 #include <cstdalign>
57 #include <cstdbool>
58 #include <cstdint>
59 #include <ctgmath>
60 #include <cwchar>
61 #include <cwctype>
62 #endif
63
64 // C++
65 #include <algorithm>
66 #include <bitset>
67 #include <complex>
68 #include <deque>
69 #include <exception>
70 #include <fstream>
71 #include <functional>
72 #include <iomanip>
73 #include <ios>
74 #include <iosfwd>
75 #include <iostream>
76 #include <istream>
77 #include <iterator>
78 #include <limits>
79 #include <list>
80 #include <locale>
81 #include <map>
82 #include <memory>
83 #include <new>
84 #include <numeric>
85 #include <ostream>
86 #include <queue>
87 #include <set>
88 #include <sstream>
89 #include <stack>
90 #include <stdexcept>
91 #include <streambuf>
92 #include <string>
93 #include <typeinfo>
94 #include <utility>
95 #include <valarray>
96 #include <vector>
97
98 #ifdef __GXX_EXPERIMENTAL_CXX0X__
99 #include <array>
100 #include <atomic>
101 #include <chrono>
102 #include <condition_variable>
103 #include <forward_list>
104 #include <future>
105 #include <initializer_list>
106 #include <mutex>
107 #include <random>
108 #include <ratio>
109 #include <regex>
110 #include <scoped_allocator>
111 #include <system_error>
112 #include <thread>
113 #include <tuple>
114 #include <typeindex>
115 #include <type_traits>
116 #include <unordered_map>
117 #include <unordered_set>
118 #endif