Is it safe to ignore exception of boost::lexical_cast when converting int to std::string?
Is it safe to ignore exception of boost::lexical_cast when converting int to std::string ?
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.
Exception raised by lexical cast when converting an
inttostd::stringare not associated to the conversion, but to resource unavailable. So you can ignore this in the same way you ignore the exceptionbad_allocraised by operator new.