aboutsummaryrefslogtreecommitdiff
path: root/libstdc++-v3/include
diff options
context:
space:
mode:
authorBenjamin Kosnik <bkoz@redhat.com>2007-12-10 00:38:36 +0000
committerBenjamin Kosnik <bkoz@gcc.gnu.org>2007-12-10 00:38:36 +0000
commit79e790677d5a0088d60da607ef0c93c1c06becb5 (patch)
treefd8a2c1f9d4504553b1ef84e02282972137daf4a /libstdc++-v3/include
parent6e2215152b7b92c812177a72de69df442137bf41 (diff)
downloadgcc-79e790677d5a0088d60da607ef0c93c1c06becb5.zip
gcc-79e790677d5a0088d60da607ef0c93c1c06becb5.tar.gz
gcc-79e790677d5a0088d60da607ef0c93c1c06becb5.tar.bz2
howto.html: Update.
2007-12-09 Benjamin Kosnik <bkoz@redhat.com> * docs/html/ext/howto.html: Update. * docs/html/ext/sgiexts.html: Same. * docs/html/ext/concurrence.html: New. Document extensions. * docs/html/17_intro/api.html: Move some bits... * docs/html/17_intro/backwards_compatibility.html: here. New. Add compatibility suggestions, move existing ones. * docs/html/17_intro/howto.html: Update info. * docs/html/18_support/howto.html: Tweak. * docs/html/faq/index.html: Update thread info. * docs/html/documentation.html: Add links. * docs/html/20_util/allocator.html: Update info. * include/precompiled/stdc++.h: Add C++0x includes if appropriate. * testsuite/17_intro/headers/c++200x/all.cc: Same. From-SVN: r130732
Diffstat (limited to 'libstdc++-v3/include')
-rw-r--r--libstdc++-v3/include/precompiled/stdc++.h24
1 files changed, 23 insertions, 1 deletions
diff --git a/libstdc++-v3/include/precompiled/stdc++.h b/libstdc++-v3/include/precompiled/stdc++.h
index df9c217..7e7c268 100644
--- a/libstdc++-v3/include/precompiled/stdc++.h
+++ b/libstdc++-v3/include/precompiled/stdc++.h
@@ -1,6 +1,6 @@
// C++ includes used for precompiling -*- C++ -*-
-// Copyright (C) 2003 Free Software Foundation, Inc.
+// Copyright (C) 2003, 2007 Free Software Foundation, Inc.
//
// This file is part of the GNU ISO C++ Library. This library is free
// software; you can redistribute it and/or modify it under the
@@ -51,6 +51,17 @@
#include <cstring>
#include <ctime>
+#ifdef __GXX_EXPERIMENTAL_CXX0X__
+#include <ccomplex>
+#include <cfenv>
+#include <cinttypes>
+#include <cstdbool>
+#include <cstdint>
+#include <ctgmath>
+#include <cwchar>
+#include <cwctype>
+#endif
+
// C++
#include <algorithm>
#include <bitset>
@@ -84,3 +95,14 @@
#include <utility>
#include <valarray>
#include <vector>
+
+#ifdef __GXX_EXPERIMENTAL_CXX0X__
+#include <array>
+#include <random>
+#include <regex>
+#include <system_error>
+#include <tuple>
+#include <type_traits>
+#include <unordered_map>
+#include <unordered_set>
+#endif