| 487 | }; |
| 488 | |
| 489 | inline |
| 490 | void |
| 491 | copy_boost_exception( exception * a, exception const * b ) |
| 492 | { |
| 493 | refcount_ptr<error_info_container> data; |
| 494 | if( error_info_container * d=b->data_.get() ) |
| 495 | data = d->clone(); |
| 496 | a->throw_file_ = b->throw_file_; |
| 497 | a->throw_line_ = b->throw_line_; |
| 498 | a->throw_function_ = b->throw_function_; |
| 499 | a->throw_column_ = b->throw_column_; |
| 500 | a->data_ = data; |
| 501 | } |
| 502 | |
| 503 | inline |
| 504 | void |
no test coverage detected