On HP aCC, this protected copy constructor prevents throwing boost::exception. On all other platforms, the same effect is achieved by the pure virtual destructor.
| 269 | //On HP aCC, this protected copy constructor prevents throwing boost::exception. |
| 270 | //On all other platforms, the same effect is achieved by the pure virtual destructor. |
| 271 | exception( exception const & x ) BOOST_NOEXCEPT_OR_NOTHROW: |
| 272 | data_(x.data_), |
| 273 | throw_function_(x.throw_function_), |
| 274 | throw_file_(x.throw_file_), |
| 275 | throw_line_(x.throw_line_), |
| 276 | throw_column_(x.throw_column_) |
| 277 | { |
| 278 | } |
| 279 | #endif |
| 280 | |
| 281 | virtual ~exception() BOOST_NOEXCEPT_OR_NOTHROW |
no outgoing calls
no test coverage detected