This is an automated email from the ASF dual-hosted git repository. pnoltes pushed a commit to branch feature/add_build_to_svc_dep_creation in repository https://gitbox.apache.org/repos/asf/celix.git
The following commit(s) were added to refs/heads/feature/add_build_to_svc_dep_creation by this push: new 5659cba Removes const from field (deleted move ctor) 5659cba is described below commit 5659cbaa1bb185f815828639c555fa19ccce0659 Author: Pepijn Noltes <pepijnnol...@gmail.com> AuthorDate: Wed Nov 11 21:36:08 2020 +0100 Removes const from field (deleted move ctor) --- libs/framework/include/celix/dm/DependencyManager.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/libs/framework/include/celix/dm/DependencyManager.h b/libs/framework/include/celix/dm/DependencyManager.h index b63b46a..0db58e3 100644 --- a/libs/framework/include/celix/dm/DependencyManager.h +++ b/libs/framework/include/celix/dm/DependencyManager.h @@ -128,8 +128,8 @@ namespace celix { namespace dm { */ std::size_t getNrOfComponents() const; private: - const std::shared_ptr<celix_bundle_context_t> context; - const std::shared_ptr<celix_dependency_manager_t> cDepMan; + std::shared_ptr<celix_bundle_context_t> context; + std::shared_ptr<celix_dependency_manager_t> cDepMan; std::vector<std::shared_ptr<BaseComponent>> components {}; };