$include_dir="/home/hyper-archives/boost-users/include"; include("$include_dir/msg-header.inc") ?>
From: jhr.walter_at_[hidden]
Date: 2003-03-01 04:54:41
One correction:
> Building your program with Intel 7.0 (boost default
> settings) results in
>
> diff sum [5,3]((0,0,0),(0,0,0),(0,0,0),(0,0,0),(0,0,0))
>
> for both debug and release builds.
But I needed to use
double *rdata = new double (n);
...
delete [] rdata;
instead of the VLA(?)
double rdata[n];
I didn't even know, that GCC accepts that already (in a C++ program ;-).
Regards,
Joerg