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:
Marvin Häuser 2023-03-08 17:02:48 +01:00 committed by Mikhail Krichanov
parent feea9b362d
commit 2531248905
1 changed files with 1 additions and 1 deletions

View File

@ -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