From 74cd6281defd2081ff1d9eef877d461eebb153ef Mon Sep 17 00:00:00 2001 From: Simon Marchetto Date: Fri, 6 Sep 2013 10:20:33 +0200 Subject: [PATCH] Scilab: ignore test ignore_template_constructor (no support of vector yet) --- Examples/test-suite/ignore_template_constructor.i | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/Examples/test-suite/ignore_template_constructor.i b/Examples/test-suite/ignore_template_constructor.i index ffd541986..ae466d711 100644 --- a/Examples/test-suite/ignore_template_constructor.i +++ b/Examples/test-suite/ignore_template_constructor.i @@ -36,6 +36,8 @@ public: #endif +#if !defined(SWIGSCILAB) + %template(VectFlow) std::vector; %inline %{ @@ -43,3 +45,5 @@ std::vector inandout(std::vector v) { return v; } %} + +#endif