Accessing TColStd_HArray1OfReal values

Hi,
It might be a stupid question, but how is the array of that type accessed/initialized correctly?
after
Handle(TColStd_HArray1OfReal) anArray=new TColStd_HArray1OfReal(0,5);

anArray->SetValue(3,10);
gives a segmentation fault error at the function call. Am I missing something out?

All the best and thanks in advance

D

dled_25121's picture

->ChangeValue(3)=10; solves the issue.

thanks

M.Saravanakumar's picture

HI!

Do you have any idea how to solve this error when working with Handles:

error C2661: 'new' : no overloaded function takes 3 parameters
Error executing cl.exe.

OCsdi.obj - 1 error(s), 0 warning(s)

Stephane Routelous's picture

at the beginning of your file, you should have something like :
#define new DEBUG_NEW

it is added by the VisualStudio wizard to help tracking memory leaks.

just remove the line

Stephane