forked from Lainports/opnsense-ports
Taken from: https://github.com/freebsd/freebsd-ports.git Commit id: 5070672073b68be364139bc6b3a89100bd17d331
15 lines
347 B
C++
15 lines
347 B
C++
--- 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();
|