Repository: celix Updated Branches: refs/heads/develop 66b22e8bc -> ffbe2271e
CELIX:386 Adds missing field initializers Project: http://git-wip-us.apache.org/repos/asf/celix/repo Commit: http://git-wip-us.apache.org/repos/asf/celix/commit/ffbe2271 Tree: http://git-wip-us.apache.org/repos/asf/celix/tree/ffbe2271 Diff: http://git-wip-us.apache.org/repos/asf/celix/diff/ffbe2271 Branch: refs/heads/develop Commit: ffbe2271e590782d1d49cd44fad9eb75be83046e Parents: 66b22e8 Author: Pepijn Noltes <[email protected]> Authored: Thu Jun 8 18:58:18 2017 +0200 Committer: Pepijn Noltes <[email protected]> Committed: Thu Jun 8 18:58:18 2017 +0200 ---------------------------------------------------------------------- examples/dm_example_cxx/phase1/include/Phase1Activator.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/celix/blob/ffbe2271/examples/dm_example_cxx/phase1/include/Phase1Activator.h ---------------------------------------------------------------------- diff --git a/examples/dm_example_cxx/phase1/include/Phase1Activator.h b/examples/dm_example_cxx/phase1/include/Phase1Activator.h index 6029cec..37b25e3 100644 --- a/examples/dm_example_cxx/phase1/include/Phase1Activator.h +++ b/examples/dm_example_cxx/phase1/include/Phase1Activator.h @@ -26,7 +26,7 @@ using namespace celix::dm; class Phase1Activator : public DmActivator { - command_service_t cmd {}; + command_service_t cmd {nullptr, nullptr}; public: Phase1Activator(DependencyManager& mng) : DmActivator(mng) {} virtual void init();
