From 558d476ef34b0e5fc32b0f3b64f13b2bddf55b4c Mon Sep 17 00:00:00 2001 From: nojhan Date: Fri, 30 Jul 2021 11:15:59 +0200 Subject: [PATCH] feat: adds a constructor taking a vector to eoCombinedContinue --- eo/src/eoCombinedContinue.h | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/eo/src/eoCombinedContinue.h b/eo/src/eoCombinedContinue.h index 756a44a89..a3b3dcbca 100644 --- a/eo/src/eoCombinedContinue.h +++ b/eo/src/eoCombinedContinue.h @@ -54,8 +54,11 @@ public: /// Ctor, make sure that at least on continuator is present eoCombinedContinue( eoContinue& _cont) : eoContinue(), std::vector* >(1, &_cont) - { - } + { } + + eoCombinedContinue( std::vector*> _conts ) + : eoContinue(), std::vector* >(_conts) + { } /* FIXME remove in next release /// Ctor - for historical reasons ... should disspear some day