summaryrefslogtreecommitdiff
path: root/src/main.cc
diff options
context:
space:
mode:
authorBehdad Esfahbod <behdad@behdad.org>2017-10-27 15:13:50 -0600
committerBehdad Esfahbod <behdad@behdad.org>2017-10-27 15:14:44 -0600
commitaf3f72f9eb7d7b80ea827976a3303390b5deae8d (patch)
treea2a1779876d34ec456630bc3eec560cc4b887e67 /src/main.cc
parent51f4d4d5cd5a0dd1a581bee5b55b3cc0a74cbea3 (diff)
Correctly mark NullPool const
Saves some more code size as well!
Diffstat (limited to 'src/main.cc')
-rw-r--r--src/main.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/main.cc b/src/main.cc
index eb1711ed..377d1396 100644
--- a/src/main.cc
+++ b/src/main.cc
@@ -38,7 +38,7 @@
using namespace OT;
-const void *OT::_hb_NullPool[HB_NULL_POOL_SIZE / sizeof (void *)];
+const void * const OT::_hb_NullPool[HB_NULL_POOL_SIZE / sizeof (void *)] = {};
int
main (int argc, char **argv)