]> git.proxmox.com Git - mirror_edk2.git/commitdiff
MdeModulePkg/RegularExpressionDxe: guard the definition of ARRAY_SIZE
authorLaszlo Ersek <lersek@redhat.com>
Wed, 26 Oct 2016 12:14:47 +0000 (14:14 +0200)
committerLaszlo Ersek <lersek@redhat.com>
Thu, 27 Oct 2016 08:49:52 +0000 (10:49 +0200)
In one of the next patches, we'll introduce ARRAY_SIZE in
"MdePkg/Include/Base.h". In order to proceed in small steps, make the
module-local definition of ARRAY_SIZE conditional. This way the
introduction of the macro under MdePkg will silently switch this module
over (after which we can remove the module-local definition completely).

Cc: Cecil Sheng <cecil.sheng@hpe.com>
Cc: Feng Tian <feng.tian@intel.com>
Cc: Star Zeng <star.zeng@intel.com>
Contributed-under: TianoCore Contribution Agreement 1.0
Signed-off-by: Laszlo Ersek <lersek@redhat.com>
Reviewed-by: Feng Tian <feng.tian@Intel.com>
Reviewed-by: Star Zeng <star.zeng@intel.com>
Reviewed-by: Jordan Justen <jordan.l.justen@intel.com>
MdeModulePkg/Universal/RegularExpressionDxe/RegularExpressionDxe.h

index b3f70136d8d3f257ea1e6dab803c2124903dd23e..73ea92b5a178b077aecd9dc6cfdb60049bda0dbe 100644 (file)
@@ -26,7 +26,9 @@
 #include <Library/DebugLib.h>\r
 #include <Library/BaseLib.h>\r
 \r
+#ifndef ARRAY_SIZE\r
 #define ARRAY_SIZE(Array) (sizeof(Array) / sizeof(*Array))\r
+#endif\r
 \r
 /**\r
   Checks if the input string matches to the regular expression pattern.\r