diff options
Diffstat (limited to 'science/qcl/files/patch-eval.cc')
-rw-r--r-- | science/qcl/files/patch-eval.cc | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/science/qcl/files/patch-eval.cc b/science/qcl/files/patch-eval.cc new file mode 100644 index 000000000000..bd25859c7615 --- /dev/null +++ b/science/qcl/files/patch-eval.cc @@ -0,0 +1,15 @@ +--- eval.cc.orig 2014-03-27 17:24:43.000000000 +0400 ++++ eval.cc 2014-09-04 21:33:12.000000000 +0400 +@@ -474,10 +474,10 @@ + void *c; + int i; + int argc=pexpr->n(); +- tValue v[argc]; ++ std::vector<tValue> v(argc); + tInt n[argc]; + tReal r[argc]; +- tComplex z[argc]; ++ std::vector<tComplex> z(argc); + tInt rn; + tReal rr; + TRACE(); |