Why do I get C1001 with the following code
array<float,2>^ arrGrayscale = gcnew array<float,2>(100, 100);
pin_ptr<float> pp = &(arrGrayscale[0,0]);
Notes: If I change the array element type from float to short, the compiler does not complain.
Thanks
Why do I get C1001 with the following code
array<float,2>^ arrGrayscale = gcnew array<float,2>(100, 100);
pin_ptr<float> pp = &(arrGrayscale[0,0]);
Notes: If I change the array element type from float to short, the compiler does not complain.
Thanks
Why do I get C1001 (internal compiler error)?
Michael Entin - MSFT
Here is the link to bug report
http://lab.msdn.microsoft.com/productfeedback/viewfeedback.aspx feedbackid=c0aff6a8-fdda-4d31-ac65-cc60ecf1b15e
SBORA
Internal compiler errors are compiler bugs. Could you please log the issue at http://lab.msdn.microsoft.com/productfeedback/default.aspx
Also, please make sure to reply back on this thread with a link to the bug so that others can follow on its status.
Thanks in advance for taking the time to report the issue!
Thanks, Ayman Shoukry VC++ Team