7 May
2008
7 May
'08
12:50 a.m.
Abhishek Soni schrieb:
//RtSpChar is defined as typedef shared_array<RtU8T> RtSpChar; in [snip] r_repositoryData.mp_data = RtSpChar (new RtU8T(l_repData.length()+1));
These lines don't go together: "shared_array" must be used with "operator new[]". There are no "[]" with "new" here. This means you must use "shared_ptr".
Kindly help me.. am stuck in it for past three days.... any help will be appreciated
I hope this will fix your error. It is good you posted all the info: code and backtrace. Regards, Frank