Hi,
I am using "Intel Parallel Studio XE 2016 Update 2". I get the following error when I try to compile my program using "Intel C++ 16.0" compiler
demcem_ws_st_rwg.cpp(44) (col. 18): : error : assertion failed at: "shared/cfe/edgglue/edg_decl.c", line 1468
Where line (44) in demcem_ws_st_rwg.cpp is
complex<double> Isub[3][3][3];
If I switch to "Visual C++ 2015" compiler I get no error and the program compiles successfully. Both build are x64.
The simple test case below also does not work
#include <complex>
using namespace std;
int main()
{
complex<double> Isub[3][3][3];
return 0;
}How can I resolve this problem?
Thanks!