MdePkg Base.h: Use correct style to check the defined macro

#if MACRO is not good style. It should be changed to
#ifdef MACRO style or #if defined (MACRO) style.

Signed-off-by: Zhiguang Liu <zhiguang.liu@intel.com>
Reviewed-by: Liming Gao <liming.gao@intel.com>
This commit is contained in:
Liming Gao 2020-01-16 11:48:05 +08:00 committed by mergify[bot]
parent 710ff7490a
commit 63653ff8c8

View File

@ -195,7 +195,7 @@ SPDX-License-Identifier: BSD-2-Clause-Patent
/// ///
#define ASM_PFX(name) _CONCATENATE (__USER_LABEL_PREFIX__, name) #define ASM_PFX(name) _CONCATENATE (__USER_LABEL_PREFIX__, name)
#if __APPLE__ #ifdef __APPLE__
// //
// Apple extension that is used by the linker to optimize code size // Apple extension that is used by the linker to optimize code size
// with assembly functions. Put at the end of your .S files // with assembly functions. Put at the end of your .S files
@ -799,7 +799,7 @@ typedef UINTN *BASE_LIST;
**/ **/
#ifdef MDE_CPU_EBC #ifdef MDE_CPU_EBC
#define STATIC_ASSERT(Expression, Message) #define STATIC_ASSERT(Expression, Message)
#elif _MSC_EXTENSIONS #elif defined(_MSC_EXTENSIONS)
#define STATIC_ASSERT static_assert #define STATIC_ASSERT static_assert
#else #else
#define STATIC_ASSERT _Static_assert #define STATIC_ASSERT _Static_assert