forked from boostorg/unordered
Reformat
This commit is contained in:
@ -3256,12 +3256,14 @@ namespace boost {
|
|||||||
// Not nothrow swappable
|
// Not nothrow swappable
|
||||||
void swap(table& x, false_type)
|
void swap(table& x, false_type)
|
||||||
{
|
{
|
||||||
if (this == &x) { return; }
|
if (this == &x) {
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
this->construct_spare_functions(x.current_functions());
|
this->construct_spare_functions(x.current_functions());
|
||||||
BOOST_TRY {
|
BOOST_TRY { x.construct_spare_functions(this->current_functions()); }
|
||||||
x.construct_spare_functions(this->current_functions());
|
BOOST_CATCH(...)
|
||||||
} BOOST_CATCH(...) {
|
{
|
||||||
this->cleanup_spare_functions();
|
this->cleanup_spare_functions();
|
||||||
BOOST_RETHROW
|
BOOST_RETHROW
|
||||||
}
|
}
|
||||||
|
Reference in New Issue
Block a user