id,summary,reporter,owner,description,type,status,milestone,component,version,severity,resolution,keywords,cc 7500,system_error.hpp doesn't compile without exceptions,ruslan-b ,Beman Dawes,"Compiling with gcc flag '''-fno-exceptions''' failed: {{{ ..\boost_1_51_0\boost\system\system_error.hpp:70: error: exception handling disabled, use -fexceptions to enable }}} code: {{{ inline const char * system_error::what() const throw() // see http://www.boost.org/more/error_handling.html for lazy build rationale { if ( m_what.empty() ) { try { m_what = this->std::runtime_error::what(); if ( !m_what.empty() ) m_what += "": ""; m_what += m_error_code.message(); } catch (...) { return std::runtime_error::what(); } } return m_what.c_str(); } }}}",Bugs,closed,To Be Determined,system,Boost 1.51.0,Problem,duplicate,no-exceptions system,