From c3a176c5cfae2b2f974c1a5f14b7e1e38a4650df Mon Sep 17 00:00:00 2001 From: Boris Kolpackov Date: Thu, 25 Jul 2019 12:05:39 +0200 Subject: Work around GCC 4.9 deficiencies --- libbuild2/module.hxx | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/libbuild2/module.hxx b/libbuild2/module.hxx index c32fc9a..8343e11 100644 --- a/libbuild2/module.hxx +++ b/libbuild2/module.hxx @@ -55,9 +55,9 @@ namespace build2 // struct module_functions { - const char* name = nullptr; // Module/submodule name. - module_boot_function* boot = nullptr; - module_init_function* init = nullptr; + const char* name; // Module/submodule name. + module_boot_function* boot; + module_init_function* init; }; // The build2__load() function will be written in C++ and will be -- cgit v1.1