mirror of https://github.com/acidanthera/audk.git
MdePkg/Base.h: Only use C++ static_assert when supported
To support GoogleTest, 933b4c3
added support for C++ static_assert.
However, this is not a mandatory or universally supported C++ feature.
Guard its usage by the __cpp_static_assert support flag.
Signed-off-by: Marvin Häuser <mhaeuser@posteo.de>
This commit is contained in:
parent
feea9b362d
commit
2531248905
|
@ -802,7 +802,7 @@ typedef UINTN *BASE_LIST;
|
|||
**/
|
||||
#ifdef MDE_CPU_EBC
|
||||
#define STATIC_ASSERT(Expression, Message)
|
||||
#elif defined (_MSC_EXTENSIONS) || defined (__cplusplus)
|
||||
#elif defined (_MSC_EXTENSIONS) || defined (__cpp_static_assert)
|
||||
#define STATIC_ASSERT static_assert
|
||||
#else
|
||||
#define STATIC_ASSERT _Static_assert
|
||||
|
|
Loading…
Reference in New Issue