| 307 | } |
| 308 | |
| 309 | void swap(shared_ptr& other) FL_NOEXCEPT { |
| 310 | fl::swap(mPtr, other.mPtr); |
| 311 | fl::swap(mControlBlock, other.mControlBlock); |
| 312 | } |
| 313 | |
| 314 | void swap(shared_ptr&& other) FL_NOEXCEPT { |
| 315 | fl::swap(mPtr, other.mPtr); |
no test coverage detected