Placement new check bug..

RapchikProgrammer
Posts: 8
Joined: Tue Feb 10, 2009 5:52 am

Placement new check bug..

Post by RapchikProgrammer »

Hello.. I am currently trying to port bullet to symbian platform and i have noticed a bug that you are checking whether a platform supports a placement new or not in btAlignedObjectArray.h but not everywhere in the code.. so even if i define BT_USE_MEMCPY i still get placement new errors in other places..
User avatar
John McCutchan
Posts: 133
Joined: Wed Jul 27, 2005 1:05 pm
Location: Berkeley, CA

Re: Placement new check bug..

Post by John McCutchan »

Hi,

Could you post the output from the compiler?

Thanks,
John
RapchikProgrammer
Posts: 8
Joined: Tue Feb 10, 2009 5:52 am

Re: Placement new check bug..

Post by RapchikProgrammer »

I used a library in symbian supported which supports placement new so i have overcome the issue so i cant show the compiler errors.. but basically when i defined BT_USE_MEMCPY i got several 'undeclared operator' errors which linked to places in the code where you used placement new operator.. and i noticed you hadnt used the #ifndef checks there..