MCPcopy Create free account
hub / github.com/FirebirdSQL/firebird / copy_boost_exception

Function copy_boost_exception

extern/boost/boost/exception/exception.hpp:489–501  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

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

Callers 3

exception.hppFile · 0.85
copy_exceptionFunction · 0.85

Calls 2

getMethod · 0.45
cloneMethod · 0.45

Tested by

no test coverage detected