Hi, is there any reason for disabling exception handling in library code, such as ustl-1.0?
For example, ustl/uexception.cpp line 60 /// Writes the exception as text into stream \p os. void exception::text_write (ostringstream& os) const { #if !PLATFORM_ANDROID try { #endif string buf; info (buf); os << buf; #if !PLATFORM_ANDROID } catch (...) {} #endif } Best regards, Elvis --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "android-framework" group. To post to this group, send email to android-framework@googlegroups.com To unsubscribe from this group, send email to android-framework+unsubscr...@googlegroups.com For more options, visit this group at http://groups.google.com/group/android-framework?hl=en -~----------~----~----~----~------~----~------~--~---