Repository: celix Updated Branches: refs/heads/develop 88567cda4 -> 66b22e8bc
CELIX-386: Change member initializer to prevent gcc 4.6 bug that the list-initialization does not work for ref members (50025) Project: http://git-wip-us.apache.org/repos/asf/celix/repo Commit: http://git-wip-us.apache.org/repos/asf/celix/commit/66b22e8b Tree: http://git-wip-us.apache.org/repos/asf/celix/tree/66b22e8b Diff: http://git-wip-us.apache.org/repos/asf/celix/diff/66b22e8b Branch: refs/heads/develop Commit: 66b22e8bc41ef552b78bd9619d39bbc16ca2202b Parents: 88567cd Author: Pepijn Noltes <[email protected]> Authored: Thu Jun 8 18:42:13 2017 +0200 Committer: Pepijn Noltes <[email protected]> Committed: Thu Jun 8 18:42:13 2017 +0200 ---------------------------------------------------------------------- dependency_manager_cxx/include/celix/dm/DmActivator_Impl.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/celix/blob/66b22e8b/dependency_manager_cxx/include/celix/dm/DmActivator_Impl.h ---------------------------------------------------------------------- diff --git a/dependency_manager_cxx/include/celix/dm/DmActivator_Impl.h b/dependency_manager_cxx/include/celix/dm/DmActivator_Impl.h index 0369215..d3176f9 100644 --- a/dependency_manager_cxx/include/celix/dm/DmActivator_Impl.h +++ b/dependency_manager_cxx/include/celix/dm/DmActivator_Impl.h @@ -19,7 +19,7 @@ using namespace celix::dm; -DmActivator::DmActivator(DependencyManager& m) : ctx{m.bundleContext()}, mng{m} {} +DmActivator::DmActivator(DependencyManager& m) : ctx{m.bundleContext()}, mng(m) {} DmActivator::~DmActivator() = default;
