I’m creating an application in BREW, by using C++. Does 3.1.5 sdk version support STL?
I’m creating an application in BREW, by using C++. Does 3.1.5 sdk version support
Share
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
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:
EASTL
to use STL or not