forked from OSchip/llvm-project
all-std-headers.cpp: Include the C++11 headers when building with clang
in -std=gnu++11 mode. llvm-svn: 154654
This commit is contained in:
parent
32233a7c1a
commit
0a465bb28e
|
@ -52,7 +52,7 @@
|
|||
#include <valarray>
|
||||
#include <vector>
|
||||
|
||||
#if __cplusplus >= 201103
|
||||
#if __cplusplus >= 201103 || defined(__GXX_EXPERIMENTAL_CXX0X__)
|
||||
#include <array>
|
||||
#if __has_include(<atomic>)
|
||||
#include <atomic>
|
||||
|
|
Loading…
Reference in New Issue