Improve the alignment for NullPool

This commit is contained in:
Behdad Esfahbod 2010-02-23 02:42:00 -05:00
parent bc7830e425
commit ecd2e996d2
1 changed files with 1 additions and 1 deletions

View File

@ -61,7 +61,7 @@
/* Null objects */ /* Null objects */
/* Global nul-content Null pool. Enlarge as necessary. */ /* Global nul-content Null pool. Enlarge as necessary. */
static const char NullPool[32] = ""; static const void *NullPool[32 / sizeof (void *)];
/* Generic template for nul-content sizeof-sized Null objects. */ /* Generic template for nul-content sizeof-sized Null objects. */
template <typename Type> template <typename Type>