mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-11-24 11:42:57 +01:00
Revert "[C++11] Do not check __GXX_EXPERIMENTAL_CXX0X__."
This reverts commit r204964 because it disabled "= delete", "constexpr" and "explicit" on GCC. llvm-svn: 204973
This commit is contained in:
parent
567636b4e3
commit
14c2e0979f
@ -104,13 +104,14 @@
|
||||
/// public:
|
||||
/// ...
|
||||
/// };
|
||||
#if __has_feature(cxx_deleted_functions) || LLVM_MSC_PREREQ(1800)
|
||||
#if __has_feature(cxx_deleted_functions) || \
|
||||
defined(__GXX_EXPERIMENTAL_CXX0X__) || LLVM_MSC_PREREQ(1800)
|
||||
#define LLVM_DELETED_FUNCTION = delete
|
||||
#else
|
||||
#define LLVM_DELETED_FUNCTION
|
||||
#endif
|
||||
|
||||
#if __has_feature(cxx_constexpr)
|
||||
#if __has_feature(cxx_constexpr) || defined(__GXX_EXPERIMENTAL_CXX0X__)
|
||||
# define LLVM_CONSTEXPR constexpr
|
||||
#else
|
||||
# define LLVM_CONSTEXPR
|
||||
@ -325,7 +326,8 @@
|
||||
/// \macro LLVM_EXPLICIT
|
||||
/// \brief Expands to explicit on compilers which support explicit conversion
|
||||
/// operators. Otherwise expands to nothing.
|
||||
#if __has_feature(cxx_explicit_conversions) || LLVM_MSC_PREREQ(1800)
|
||||
#if __has_feature(cxx_explicit_conversions) || \
|
||||
defined(__GXX_EXPERIMENTAL_CXX0X__) || LLVM_MSC_PREREQ(1800)
|
||||
#define LLVM_EXPLICIT explicit
|
||||
#else
|
||||
#define LLVM_EXPLICIT
|
||||
|
Loading…
Reference in New Issue
Block a user