| Index: include/v8config.h
|
| diff --git a/include/v8config.h b/include/v8config.h
|
| index c88e1da15e9125464678640cf05bb84667e76d9c..d2be68561c0cc3807040b65cd4a4d397ce102afe 100644
|
| --- a/include/v8config.h
|
| +++ b/include/v8config.h
|
| @@ -163,7 +163,6 @@
|
| //
|
| // V8_HAS_CXX11_ALIGNAS - alignas specifier supported
|
| // V8_HAS_CXX11_ALIGNOF - alignof(type) operator supported
|
| -// V8_HAS_CXX11_STATIC_ASSERT - static_assert() supported
|
| //
|
| // Compiler-specific feature detection
|
| //
|
| @@ -230,7 +229,6 @@
|
| # define V8_HAS_BUILTIN_UADD_OVERFLOW (__has_builtin(__builtin_uadd_overflow))
|
|
|
| # define V8_HAS_CXX11_ALIGNAS (__has_feature(cxx_alignas))
|
| -# define V8_HAS_CXX11_STATIC_ASSERT (__has_feature(cxx_static_assert))
|
|
|
| #elif defined(__GNUC__)
|
|
|
| @@ -277,7 +275,6 @@
|
| # if defined(__GXX_EXPERIMENTAL_CXX0X__) || __cplusplus >= 201103L
|
| # define V8_HAS_CXX11_ALIGNAS (V8_GNUC_PREREQ(4, 8, 0))
|
| # define V8_HAS_CXX11_ALIGNOF (V8_GNUC_PREREQ(4, 8, 0))
|
| -# define V8_HAS_CXX11_STATIC_ASSERT (V8_GNUC_PREREQ(4, 3, 0))
|
| # endif
|
| #endif
|
|
|
|
|