diff options
author | dim <dim@FreeBSD.org> | 2012-04-14 14:01:31 +0000 |
---|---|---|
committer | dim <dim@FreeBSD.org> | 2012-04-14 14:01:31 +0000 |
commit | 50b73317314e889cf39c7b1d6cbf419fa7502f22 (patch) | |
tree | be1815eb79b42ff482a8562b13c2dcbf0c5dcbee /INPUTS | |
parent | dc04cb328508e61aad809d9b53b12f9799a00e7d (diff) | |
download | FreeBSD-src-50b73317314e889cf39c7b1d6cbf419fa7502f22.zip FreeBSD-src-50b73317314e889cf39c7b1d6cbf419fa7502f22.tar.gz |
Vendor import of clang trunk r154661:
http://llvm.org/svn/llvm-project/cfe/trunk@r154661
Diffstat (limited to 'INPUTS')
-rw-r--r-- | INPUTS/all-std-headers.cpp | 37 |
1 files changed, 36 insertions, 1 deletions
diff --git a/INPUTS/all-std-headers.cpp b/INPUTS/all-std-headers.cpp index bddf4ec..5b5f4ec 100644 --- a/INPUTS/all-std-headers.cpp +++ b/INPUTS/all-std-headers.cpp @@ -44,8 +44,43 @@ #include <stdexcept> #include <streambuf> #include <string> -#include <strstream> +#if __has_include(<strstream>) +#include <strstream> +#endif #include <typeinfo> #include <utility> #include <valarray> #include <vector> + +#if __cplusplus >= 201103 || defined(__GXX_EXPERIMENTAL_CXX0X__) +#include <array> +#if __has_include(<atomic>) +#include <atomic> +#endif +#include <chrono> +#if __has_include(<codecvt>) +#include <codecvt> +#endif +#include <condition_variable> +#include <forward_list> +#if __has_include(<future>) +#include <future> +#endif +#include <initializer_list> +#include <mutex> +#include <random> +#include <ratio> +#include <regex> +#if __has_include(<scoped_allocator>) +#include <scoped_allocator> +#endif +#include <system_error> +#include <thread> +#include <tuple> +#include <type_traits> +#if __has_include(<typeindex>) +#include <typeindex> +#endif +#include <unordered_map> +#include <unordered_set> +#endif |