Does BREW 3.1.5 support STL?

173 Views Asked by At

I'm creating an application in BREW, by using C++. Does 3.1.5 sdk version support STL?

1

There are 1 best solutions below

0
On BEST ANSWER

The BREW platform does not support exceptions, also it has no stream based I/O. This could explain why some have reported success using STL, while others shun it. As long as you stay away from the parts of STL that is problematic on BREW, it might work, but it's far from fool proof. Personally, I would avoid it.

If you are going to use it, a mandatory requirement is to overload new/delete with BREW's MALLOC() and FREE().

Also related reading: