From dd7a4d001b2266c10e1c70914dec659b2bd12474 Mon Sep 17 00:00:00 2001 From: Christophe Geuzaine <cgeuzaine@ulg.ac.be> Date: Fri, 4 Dec 2015 19:28:27 +0000 Subject: [PATCH] fix --- Common/onelab.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Common/onelab.h b/Common/onelab.h index 9f841f8345..f57eb6ec1c 100644 --- a/Common/onelab.h +++ b/Common/onelab.h @@ -1254,11 +1254,11 @@ namespace onelab{ std::vector<std::string> out; std::vector<number> n; get(n); for(unsigned int i = 0; i < n.size(); i++) out.push_back(n[i].toChar()); - std::vector<number> s; get(s); + std::vector<string> s; get(s); for(unsigned int i = 0; i < s.size(); i++) out.push_back(s[i].toChar()); std::vector<region> r; get(r); for(unsigned int i = 0; i < r.size(); i++) out.push_back(r[i].toChar()); - std::vector<region> f; get(f); + std::vector<function> f; get(f); for(unsigned int i = 0; i < f.size(); i++) out.push_back(f[i].toChar()); return out; } -- GitLab