Repository: celix Updated Branches: refs/heads/develop 35b2fc1ec -> 30b9f2d5e
CELIX-370: Fixes a compiler issue and updated the travis config to now use a deprecated ubunty trusty images. Concerning the travis config, this is work around which needs to be fixed in the coming months. After that the deprecated trusty image will not be supported anymore. Project: http://git-wip-us.apache.org/repos/asf/celix/repo Commit: http://git-wip-us.apache.org/repos/asf/celix/commit/acdaae37 Tree: http://git-wip-us.apache.org/repos/asf/celix/tree/acdaae37 Diff: http://git-wip-us.apache.org/repos/asf/celix/diff/acdaae37 Branch: refs/heads/develop Commit: acdaae377238e6e3c6abf331236bdcb3e0b362a4 Parents: 35b2fc1 Author: Pepijn Noltes <[email protected]> Authored: Mon Jun 26 21:09:33 2017 +0200 Committer: Pepijn Noltes <[email protected]> Committed: Mon Jun 26 21:09:33 2017 +0200 ---------------------------------------------------------------------- .travis.yml | 1 + examples/dm_example_cxx/phase3/include/Phase3BaseActivator.h | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/celix/blob/acdaae37/.travis.yml ---------------------------------------------------------------------- diff --git a/.travis.yml b/.travis.yml index cbbe2e1..fba0352 100644 --- a/.travis.yml +++ b/.travis.yml @@ -1,5 +1,6 @@ sudo: required +group: deprecated-2017Q2 language: c http://git-wip-us.apache.org/repos/asf/celix/blob/acdaae37/examples/dm_example_cxx/phase3/include/Phase3BaseActivator.h ---------------------------------------------------------------------- diff --git a/examples/dm_example_cxx/phase3/include/Phase3BaseActivator.h b/examples/dm_example_cxx/phase3/include/Phase3BaseActivator.h index 3a3b1b8..0f3d813 100644 --- a/examples/dm_example_cxx/phase3/include/Phase3BaseActivator.h +++ b/examples/dm_example_cxx/phase3/include/Phase3BaseActivator.h @@ -26,7 +26,7 @@ using namespace celix::dm; class Phase3BaseActivator : public DmActivator { public: - Phase3BaseActivator(DependencyManager& mng) : DmActivator(mng), cmp{mng.createComponent<Phase3Cmp>()} {} + Phase3BaseActivator(DependencyManager& mng) : DmActivator(mng), cmp(mng.createComponent<Phase3Cmp>()) {} void init(); protected: celix::dm::Component<Phase3Cmp>& cmp;
